@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.
Files changed (58) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/build/index.tsx +8 -8
  3. package/core/assets-data-manager.d.ts +3 -5
  4. package/core/assets-data-manager.js +3 -3
  5. package/core/assets-schema.d.ts +3 -5
  6. package/core/assets-schema.js +3 -3
  7. package/core/book-open.d.ts +3 -5
  8. package/core/book-open.js +3 -3
  9. package/core/coins.d.ts +3 -5
  10. package/core/coins.js +3 -3
  11. package/core/cross-octagon.d.ts +3 -5
  12. package/core/cross-octagon.js +3 -3
  13. package/core/editions.d.ts +3 -5
  14. package/core/editions.js +3 -3
  15. package/core/field-text.d.ts +3 -5
  16. package/core/field-text.js +3 -3
  17. package/core/initiative.d.ts +3 -5
  18. package/core/initiative.js +4 -4
  19. package/core/lozenge.d.ts +3 -5
  20. package/core/lozenge.js +3 -3
  21. package/core/paint-brush.d.ts +3 -5
  22. package/core/paint-brush.js +3 -3
  23. package/core/paint-roller.d.ts +3 -5
  24. package/core/paint-roller.js +3 -3
  25. package/core/qr-code.d.ts +3 -5
  26. package/core/qr-code.js +4 -4
  27. package/core/roadmaps-plan.d.ts +3 -5
  28. package/core/roadmaps-plan.js +3 -3
  29. package/core/roadmaps-service.d.ts +3 -5
  30. package/core/roadmaps-service.js +3 -3
  31. package/core/speedometer.d.ts +3 -5
  32. package/core/speedometer.js +3 -3
  33. package/core/takeout-container.d.ts +3 -5
  34. package/core/takeout-container.js +3 -3
  35. package/core/ticket.d.ts +3 -5
  36. package/core/ticket.js +3 -3
  37. package/core/vehicle-train.d.ts +3 -5
  38. package/core/vehicle-train.js +3 -3
  39. package/core/vulnerability.d.ts +3 -5
  40. package/core/vulnerability.js +3 -3
  41. package/core/wallet.d.ts +3 -5
  42. package/core/wallet.js +3 -3
  43. package/core/wrench.d.ts +3 -5
  44. package/core/wrench.js +3 -3
  45. package/dist/cjs/deprecated-core.js +2 -2
  46. package/dist/cjs/metadata-core.js +2 -2
  47. package/dist/es2019/deprecated-core.js +2 -2
  48. package/dist/es2019/metadata-core.js +2 -2
  49. package/dist/esm/deprecated-core.js +2 -2
  50. package/dist/esm/metadata-core.js +2 -2
  51. package/dist/types/deprecated-core.d.ts +2 -2
  52. package/dist/types/metadata-core.d.ts +2 -2
  53. package/dist/types/migration-map.d.ts +2 -2
  54. package/dist/types-ts4.5/deprecated-core.d.ts +2 -2
  55. package/dist/types-ts4.5/metadata-core.d.ts +2 -2
  56. package/dist/types-ts4.5/migration-map.d.ts +2 -2
  57. package/{UNSAFE_migration-map → migration-map}/package.json +1 -1
  58. package/package.json +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/icon-lab",
3
- "version": "1.2.0",
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": "^22.26.0",
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.2.0",
42
+ "@af/icon-build-process": "^2.4.0",
43
43
  "@af/integration-testing": "*",
44
44
  "@af/visual-regression": "*",
45
- "@atlaskit/ds-lib": "^3.2.0",
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
- "./UNSAFE_migration-map": "./src/migration-map.tsx",
87
+ "./migration-map": "./src/migration-map.tsx",
88
88
  "./core": "./core",
89
89
  ".": "./src/index.tsx"
90
90
  },