@atlaskit/icon-lab 2.2.0 → 2.3.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,25 @@
1
1
  # @atlaskit/icon-lab
2
2
 
3
+ ## 2.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#108665](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/108665)
8
+ [`7fd6c6ed799fa`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7fd6c6ed799fa) -
9
+ Update dev dependencies.
10
+
11
+ ## 2.3.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [#109060](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109060)
16
+ [`4660ec858a305`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4660ec858a305) -
17
+ Update `React` from v16 to v18
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+
3
23
  ## 2.2.0
4
24
 
5
25
  ### Minor Changes
package/build/index.tsx CHANGED
@@ -7,6 +7,7 @@ import {
7
7
  buildNew as buildIcons,
8
8
  createDeprecatedIconDocs,
9
9
  createIconDocsNew,
10
+ createVRTest,
10
11
  type NewIconBuildConfig,
11
12
  } from '@af/icon-build-process';
12
13
 
@@ -58,4 +59,15 @@ buildIcons(config).then((icons) => {
58
59
  );
59
60
 
60
61
  fs.outputFile(path.resolve(root, 'src/deprecated-core.tsx'), deprecatedDocs);
62
+
63
+ // Generate VR tests
64
+ const [vrExampleCore, vrTestCore] = createVRTest(coreIconMetadata, '../../../..', 20, 'core');
65
+ fs.outputFile(
66
+ path.resolve(root, 'src/__tests__/vr-tests/examples/all-core-icons.tsx'),
67
+ vrExampleCore,
68
+ );
69
+ fs.outputFile(
70
+ path.resolve(root, 'src/__tests__/vr-tests/all-core-icons.test.vr.tsx'),
71
+ vrTestCore,
72
+ );
61
73
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/icon-lab",
3
- "version": "2.2.0",
3
+ "version": "2.3.1",
4
4
  "description": "An icon package for public icon contributions",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -32,7 +32,7 @@
32
32
  "build-glyphs": "ts-node --project ../../../tsconfig.node.json ./build/index.tsx"
33
33
  },
34
34
  "dependencies": {
35
- "@atlaskit/icon": "^23.4.0",
35
+ "@atlaskit/icon": "^23.5.0",
36
36
  "@babel/runtime": "^7.0.0"
37
37
  },
38
38
  "peerDependencies": {
@@ -40,14 +40,22 @@
40
40
  },
41
41
  "devDependencies": {
42
42
  "@af/icon-build-process": "^2.4.0",
43
- "@af/integration-testing": "*",
44
43
  "@af/visual-regression": "*",
45
- "@atlaskit/ds-lib": "^3.3.0",
44
+ "@atlaskit/button": "^20.3.12",
45
+ "@atlaskit/code": "^15.6.10",
46
+ "@atlaskit/ds-lib": "^3.5.0",
47
+ "@atlaskit/heading": "^4.0.2",
48
+ "@atlaskit/modal-dialog": "^12.19.3",
49
+ "@atlaskit/primitives": "^13.3.8",
46
50
  "@atlaskit/ssr": "*",
47
- "@testing-library/react": "^12.1.5",
51
+ "@atlaskit/textfield": "^6.7.2",
52
+ "@atlaskit/tokens": "^3.2.0",
53
+ "@atlaskit/tooltip": "^19.0.3",
54
+ "@compiled/react": "^0.18.1",
55
+ "@testing-library/react": "^13.4.0",
48
56
  "fs-extra": "^4.0.2",
49
57
  "pkg-dir": "^4.2.0",
50
- "react-dom": "^16.8.0",
58
+ "react-dom": "^18.2.0",
51
59
  "ts-node": "^10.9.1",
52
60
  "typescript": "~5.4.2"
53
61
  },