@atlaskit/icon-object 6.9.0 → 6.10.1

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,23 @@
1
1
  # @atlaskit/icon-object
2
2
 
3
+ ## 6.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 6.10.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#109060](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109060)
14
+ [`4660ec858a305`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4660ec858a305) -
15
+ Update `React` from v16 to v18
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 6.9.0
4
22
 
5
23
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/icon-object",
3
- "version": "6.9.0",
3
+ "version": "6.10.1",
4
4
  "description": "An object icon is used to represent an Atlassian-specific content type.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -37,8 +37,8 @@
37
37
  "build-glyphs": "ts-node --project ../../../tsconfig.node.json ./build/index.tsx"
38
38
  },
39
39
  "dependencies": {
40
- "@atlaskit/icon": "^23.0.0",
41
- "@atlaskit/platform-feature-flags": "^0.3.0",
40
+ "@atlaskit/icon": "^23.6.0",
41
+ "@atlaskit/platform-feature-flags": "^1.0.0",
42
42
  "@babel/runtime": "^7.0.0"
43
43
  },
44
44
  "peerDependencies": {
@@ -47,15 +47,15 @@
47
47
  "devDependencies": {
48
48
  "@af/formatting": "*",
49
49
  "@af/icon-build-process": "^2.4.0",
50
- "@atlaskit/textfield": "^6.6.0",
51
- "@atlaskit/tooltip": "^18.9.0",
50
+ "@atlaskit/textfield": "^6.8.0",
51
+ "@atlaskit/tooltip": "^19.1.0",
52
52
  "@atlaskit/visual-regression": "*",
53
53
  "@atlassian/codegen": "^0.1.2",
54
54
  "@emotion/styled": "^11.0.0",
55
55
  "fs-extra": "^4.0.2",
56
56
  "jscodeshift": "^0.13.0",
57
57
  "pkg-dir": "^4.2.0",
58
- "react-dom": "^16.8.0",
58
+ "react-dom": "^18.2.0",
59
59
  "ts-node": "^10.9.1"
60
60
  },
61
61
  "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
  }
@@ -1,5 +0,0 @@
1
- import React from 'react';
2
-
3
- import CodeIcon24 from '../src/artifacts/glyph/code/24';
4
-
5
- export default () => <CodeIcon24 label="CodeIcon 24" />;