@atlaskit/image 1.1.3 → 1.1.5

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/image
2
2
 
3
+ ## 1.1.5
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.1.4
10
+
11
+ ### Patch Changes
12
+
13
+ - [`d0a020ae050`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d0a020ae050) - Basic accessibility unit tests with jest-axe
14
+
3
15
  ## 1.1.3
4
16
 
5
17
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/image",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/image",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/image",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/image",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "description": "An image that changes in light or dark themes.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -39,7 +39,7 @@
39
39
  ".": "./src/index.tsx"
40
40
  },
41
41
  "dependencies": {
42
- "@atlaskit/tokens": "^1.4.0",
42
+ "@atlaskit/tokens": "^1.11.0",
43
43
  "@babel/runtime": "^7.0.0",
44
44
  "@emotion/react": "^11.7.1"
45
45
  },
@@ -47,9 +47,8 @@
47
47
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
48
48
  },
49
49
  "devDependencies": {
50
- "@atlaskit/docs": "*",
50
+ "@af/accessibility-testing": "*",
51
51
  "@atlaskit/ds-lib": "^2.2.0",
52
- "@atlaskit/section-message": "*",
53
52
  "@atlaskit/ssr": "*",
54
53
  "@atlaskit/visual-regression": "*",
55
54
  "@atlaskit/webdriver-runner": "*",
@@ -92,6 +91,9 @@
92
91
  "styling": [
93
92
  "static",
94
93
  "emotion"
94
+ ],
95
+ "imports": [
96
+ "import-no-extraneous-disable-for-examples-and-docs"
95
97
  ]
96
98
  }
97
99
  },
@@ -1,23 +0,0 @@
1
- ## API Report File for "@atlaskit/image"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- /// <reference types="react" />
8
-
9
- import { jsx } from '@emotion/react';
10
-
11
- // @public
12
- function Image_2({ src, srcDark, alt, testId, ...props }: ImageProps): jsx.JSX.Element;
13
- export default Image_2;
14
-
15
- // @public (undocumented)
16
- interface ImageProps extends React.ImgHTMLAttributes<HTMLImageElement> {
17
- srcDark?: string;
18
- testId?: string;
19
- }
20
-
21
- // (No @packageDocumentation comment for this package)
22
-
23
- ```