@atlaskit/inline-message 11.2.5 → 11.2.8

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,24 @@
1
1
  # @atlaskit/inline-message
2
2
 
3
+ ## 11.2.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [`efa50ac72ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efa50ac72ba) - Adjusts jsdoc strings to improve prop documentation
8
+
9
+ ## 11.2.7
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 11.2.6
16
+
17
+ ### Patch Changes
18
+
19
+ - [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
20
+ - Updated dependencies
21
+
3
22
  ## 11.2.5
4
23
 
5
24
  ### Patch Changes
@@ -3,5 +3,6 @@
3
3
  "main": "../dist/cjs/constants.js",
4
4
  "module": "../dist/esm/constants.js",
5
5
  "module:es2019": "../dist/es2019/constants.js",
6
+ "sideEffects": false,
6
7
  "types": "../dist/types/constants.d.ts"
7
8
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/inline-message",
3
- "version": "11.2.5",
3
+ "version": "11.2.8",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/inline-message",
3
- "version": "11.2.5",
3
+ "version": "11.2.8",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/inline-message",
3
- "version": "11.2.5",
3
+ "version": "11.2.8",
4
4
  "sideEffects": false
5
5
  }
@@ -25,16 +25,15 @@ interface InlineMessageProps {
25
25
  */
26
26
  type?: IconAppearance;
27
27
  /**
28
- * A `testId` prop is provided for specified elements, which is a unique
29
- * string that appears as a data attribute `data-testid` in the rendered code,
30
- * serving as a hook for automated tests.
31
- *
32
- * As inline message is composed of different components, we passed down the testId to the sub component you want to test:
33
- * - testId to identify the inline message component.
34
- * - testId--inline-dialog to get the content of the actual component.
35
- * - testId--button to click on the actual component.
36
- * - testId--title to get the title of the actual component.
37
- * - testId--text to get the text of the actual component.
28
+ A unique string that appears as a data attribute, `data-testid`,
29
+ in the rendered code. It is provided to serve as a hook for automated tests.
30
+
31
+ The value of `testId` is attached to the different sub-components in Inline Message:
32
+ - `testId`: the top-level inline message component
33
+ - `testId--inline-dialog`: the content of the message
34
+ - `testId--button`: the button element that opens the dialog on press
35
+ - `testId--title`: the title of the message
36
+ - `testId--text`: the text of the message
38
37
  */
39
38
  testId?: string;
40
39
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/inline-message",
3
- "version": "11.2.5",
3
+ "version": "11.2.8",
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/"
@@ -23,11 +23,11 @@
23
23
  }
24
24
  },
25
25
  "dependencies": {
26
- "@atlaskit/button": "^16.2.0",
26
+ "@atlaskit/button": "^16.3.0",
27
27
  "@atlaskit/icon": "^21.10.0",
28
28
  "@atlaskit/inline-dialog": "^13.3.0",
29
29
  "@atlaskit/theme": "^12.1.0",
30
- "@atlaskit/tokens": "^0.9.0",
30
+ "@atlaskit/tokens": "^0.10.0",
31
31
  "@babel/runtime": "^7.0.0",
32
32
  "@emotion/core": "^10.0.9"
33
33
  },
@@ -44,7 +44,7 @@
44
44
  "@testing-library/react": "^8.0.1",
45
45
  "enzyme": "^3.10.0",
46
46
  "react-dom": "^16.8.0",
47
- "typescript": "3.9.10"
47
+ "typescript": "4.2.4"
48
48
  },
49
49
  "keywords": [
50
50
  "atlaskit",
@@ -3,5 +3,6 @@
3
3
  "main": "../dist/cjs/types.js",
4
4
  "module": "../dist/esm/types.js",
5
5
  "module:es2019": "../dist/es2019/types.js",
6
+ "sideEffects": false,
6
7
  "types": "../dist/types/types.d.ts"
7
8
  }