@atlaskit/icon-lab 1.2.0 → 2.1.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 +34 -0
- package/build/index.tsx +8 -8
- package/core/assets-data-manager.d.ts +3 -5
- package/core/assets-data-manager.js +3 -3
- package/core/assets-schema.d.ts +3 -5
- package/core/assets-schema.js +3 -3
- package/core/book-open.d.ts +3 -5
- package/core/book-open.js +3 -3
- package/core/coins.d.ts +3 -5
- package/core/coins.js +3 -3
- package/core/cross-octagon.d.ts +3 -5
- package/core/cross-octagon.js +3 -3
- package/core/editions.d.ts +3 -5
- package/core/editions.js +3 -3
- package/core/field-text.d.ts +3 -5
- package/core/field-text.js +3 -3
- package/core/initiative.d.ts +3 -5
- package/core/initiative.js +4 -4
- package/core/lozenge.d.ts +3 -5
- package/core/lozenge.js +3 -3
- package/core/paint-brush.d.ts +3 -5
- package/core/paint-brush.js +3 -3
- package/core/paint-roller.d.ts +3 -5
- package/core/paint-roller.js +3 -3
- package/core/qr-code.d.ts +3 -5
- package/core/qr-code.js +4 -4
- package/core/roadmaps-plan.d.ts +3 -5
- package/core/roadmaps-plan.js +3 -3
- package/core/roadmaps-service.d.ts +3 -5
- package/core/roadmaps-service.js +3 -3
- package/core/speedometer.d.ts +3 -5
- package/core/speedometer.js +3 -3
- package/core/takeout-container.d.ts +3 -5
- package/core/takeout-container.js +3 -3
- package/core/ticket.d.ts +3 -5
- package/core/ticket.js +3 -3
- package/core/vehicle-train.d.ts +3 -5
- package/core/vehicle-train.js +3 -3
- package/core/vulnerability.d.ts +3 -5
- package/core/vulnerability.js +3 -3
- package/core/wallet.d.ts +3 -5
- package/core/wallet.js +3 -3
- package/core/wrench.d.ts +3 -5
- package/core/wrench.js +3 -3
- package/dist/cjs/deprecated-core.js +2 -2
- package/dist/cjs/metadata-core.js +2 -2
- package/dist/es2019/deprecated-core.js +2 -2
- package/dist/es2019/metadata-core.js +2 -2
- package/dist/esm/deprecated-core.js +2 -2
- package/dist/esm/metadata-core.js +2 -2
- package/dist/types/deprecated-core.d.ts +2 -2
- package/dist/types/metadata-core.d.ts +2 -2
- package/dist/types/migration-map.d.ts +2 -2
- package/dist/types-ts4.5/deprecated-core.d.ts +2 -2
- package/dist/types-ts4.5/metadata-core.d.ts +2 -2
- package/dist/types-ts4.5/migration-map.d.ts +2 -2
- package/{UNSAFE_migration-map → migration-map}/package.json +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/icon-lab",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "An icon package for public icon contributions",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
"build-glyphs": "ts-node --project ../../../tsconfig.node.json ./build/index.tsx"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@atlaskit/icon": "^
|
|
35
|
+
"@atlaskit/icon": "^23.2.0",
|
|
36
36
|
"@babel/runtime": "^7.0.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@af/icon-build-process": "^2.
|
|
42
|
+
"@af/icon-build-process": "^2.4.0",
|
|
43
43
|
"@af/integration-testing": "*",
|
|
44
44
|
"@af/visual-regression": "*",
|
|
45
|
-
"@atlaskit/ds-lib": "^3.
|
|
45
|
+
"@atlaskit/ds-lib": "^3.3.0",
|
|
46
46
|
"@atlaskit/ssr": "*",
|
|
47
47
|
"@testing-library/react": "^12.1.5",
|
|
48
48
|
"fs-extra": "^4.0.2",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"af:exports": {
|
|
85
85
|
"./deprecated-map": "./src/entry-points/deprecated-map.tsx",
|
|
86
86
|
"./metadata": "./src/entry-points/metadata.tsx",
|
|
87
|
-
"./
|
|
87
|
+
"./migration-map": "./src/migration-map.tsx",
|
|
88
88
|
"./core": "./core",
|
|
89
89
|
".": "./src/index.tsx"
|
|
90
90
|
},
|