@atlaskit/icon-file-type 6.8.0 → 6.9.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,17 @@
1
1
  # @atlaskit/icon-file-type
2
2
 
3
+ ## 6.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#109060](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109060)
8
+ [`4660ec858a305`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4660ec858a305) -
9
+ Update `React` from v16 to v18
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 6.8.0
4
16
 
5
17
  ### 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": "6.9.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/"
@@ -38,7 +38,7 @@
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": "^23.5.0",
42
42
  "@babel/runtime": "^7.0.0"
43
43
  },
44
44
  "peerDependencies": {
@@ -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
  }