@atlaskit/icon-file-type 6.8.0 → 7.0.0

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,35 @@
1
1
  # @atlaskit/icon-file-type
2
2
 
3
+ ## 7.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [#117363](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/117363)
8
+ [`10a0f7f6c2027`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/10a0f7f6c2027) -
9
+ This package's `peerDependencies` have been adjusted for `react` and/or `react-dom` to reflect the
10
+ status of only supporting React 18 going forward. No explicit breaking change to React support has
11
+ been made in this release, but this is to signify going forward, breaking changes for React 16 or
12
+ React 17 may come via non-major semver releases.
13
+
14
+ Please refer this community post for more details:
15
+ https://community.developer.atlassian.com/t/rfc-78-dropping-support-for-react-16-and-rendering-in-a-react-18-concurrent-root-in-jira-and-confluence/87026
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
21
+ ## 6.9.0
22
+
23
+ ### Minor Changes
24
+
25
+ - [#109060](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109060)
26
+ [`4660ec858a305`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4660ec858a305) -
27
+ Update `React` from v16 to v18
28
+
29
+ ### Patch Changes
30
+
31
+ - Updated dependencies
32
+
3
33
  ## 6.8.0
4
34
 
5
35
  ### Minor Changes
@@ -5,10 +5,13 @@ import IconExplorer from '../../examples/icon-explorer';
5
5
  export default md`
6
6
  ##
7
7
  ## Icon Explorer
8
- ${(
9
- <p>
10
- <IconExplorer />
11
- </p>
12
- )}
8
+ ${
9
+ (
10
+ // eslint-disable-next-line @atlaskit/design-system/use-primitives-text
11
+ <p>
12
+ <IconExplorer />
13
+ </p>
14
+ )
15
+ }
13
16
 
14
17
  `;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/icon-file-type",
3
- "version": "6.8.0",
3
+ "version": "7.0.0",
4
4
  "description": "A file type icon is used to represent specific types of content used across Atlassian products.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "sideEffects": false,
25
25
  "atlassian": {
26
- "team": "Media Experience",
26
+ "team": "Media Exif",
27
27
  "website": {
28
28
  "name": "Icon File Type"
29
29
  },
@@ -38,11 +38,11 @@
38
38
  "build-glyphs": "ts-node --project ../../../tsconfig.node.json ./build/index.ts"
39
39
  },
40
40
  "dependencies": {
41
- "@atlaskit/icon": "^23.0.0",
41
+ "@atlaskit/icon": "^24.0.0",
42
42
  "@babel/runtime": "^7.0.0"
43
43
  },
44
44
  "peerDependencies": {
45
- "react": "^16.8.0 || ^17.0.0 || ~18.2.0"
45
+ "react": "^18.2.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@af/icon-build-process": "^2.4.0",
@@ -52,7 +52,7 @@
52
52
  "fs-extra": "^4.0.2",
53
53
  "jscodeshift": "^0.13.0",
54
54
  "pkg-dir": "^4.2.0",
55
- "react-dom": "^16.8.0",
55
+ "react-dom": "^18.2.0",
56
56
  "ts-node": "^10.9.1"
57
57
  },
58
58
  "keywords": [
package/tsconfig.json CHANGED
@@ -12,6 +12,5 @@
12
12
  "./example-helpers/**/*.tsx"
13
13
  ],
14
14
  "compilerOptions": {
15
- "baseUrl": "./"
16
15
  }
17
16
  }