@atlaskit/visually-hidden 1.2.2 → 1.2.4

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,17 @@
1
1
  # @atlaskit/visually-hidden
2
2
 
3
+ ## 1.2.4
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
+
9
+ ## 1.2.3
10
+
11
+ ### Patch Changes
12
+
13
+ - [`b1bdec7cce2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b1bdec7cce2) - Internal change to enforce token usage for spacing properties. There is no expected visual or behaviour change.
14
+
3
15
  ## 1.2.2
4
16
 
5
17
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/visually-hidden",
3
- "version": "1.2.2",
3
+ "version": "1.2.4",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/visually-hidden",
3
- "version": "1.2.2",
3
+ "version": "1.2.4",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/visually-hidden",
3
- "version": "1.2.2",
3
+ "version": "1.2.4",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/visually-hidden",
3
- "version": "1.2.2",
3
+ "version": "1.2.4",
4
4
  "description": "A utility that hides content from the screen while retaining readability by screen readers for accessibility.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -10,7 +10,7 @@
10
10
  "atlassian": {
11
11
  "team": "Design System Team",
12
12
  "inPublicMirror": true,
13
- "releaseModel": "scheduled",
13
+ "releaseModel": "continuous",
14
14
  "website": {
15
15
  "name": "Visually hidden",
16
16
  "category": "Components"
@@ -42,15 +42,10 @@
42
42
  "react": "^16.8.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@atlaskit/button": "^16.7.0",
46
- "@atlaskit/docs": "*",
45
+ "@af/accessibility-testing": "*",
47
46
  "@atlaskit/ds-lib": "^2.2.0",
48
- "@atlaskit/section-message": "^6.4.0",
49
47
  "@atlaskit/ssr": "*",
50
- "@atlaskit/toggle": "^12.6.0",
51
- "@atlaskit/tokens": "^1.4.0",
52
48
  "@atlaskit/visual-regression": "^0.8.0",
53
- "@atlaskit/webdriver-runner": "*",
54
49
  "@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0",
55
50
  "@testing-library/react": "^12.1.5",
56
51
  "react-dom": "^16.8.0",
@@ -72,7 +67,8 @@
72
67
  "ui-components": "lite-mode",
73
68
  "analytics": "analytics-next",
74
69
  "design-tokens": [
75
- "color"
70
+ "color",
71
+ "spacing"
76
72
  ],
77
73
  "deprecation": "no-deprecated-imports"
78
74
  }
package/report.api.md CHANGED
@@ -8,6 +8,7 @@
8
8
  ### Table of contents
9
9
 
10
10
  - [Main Entry Types](#main-entry-types)
11
+ - [Peer Dependencies](#peer-dependencies)
11
12
 
12
13
  ### Main Entry Types
13
14
 
@@ -23,13 +24,25 @@ export default VisuallyHidden;
23
24
 
24
25
  // @public (undocumented)
25
26
  export type VisuallyHiddenProps = {
26
- testId?: string;
27
27
  children: ReactNode;
28
28
  role?: string;
29
29
  id?: string;
30
+ testId?: string;
30
31
  };
31
32
 
32
33
  // (No @packageDocumentation comment for this package)
33
34
  ```
34
35
 
35
36
  <!--SECTION END: Main Entry Types-->
37
+
38
+ ### Peer Dependencies
39
+
40
+ <!--SECTION START: Peer Dependencies-->
41
+
42
+ ```json
43
+ {
44
+ "react": "^16.8.0"
45
+ }
46
+ ```
47
+
48
+ <!--SECTION END: Peer Dependencies-->