@atlaskit/icon 27.9.1 → 27.9.2
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 +8 -0
- package/build/index.tsx +2 -2
- package/dist/cjs/metadata-core.js +367 -367
- package/dist/cjs/metadata-utility.js +30 -30
- package/dist/es2019/metadata-core.js +367 -367
- package/dist/es2019/metadata-utility.js +30 -30
- package/dist/esm/metadata-core.js +367 -367
- package/dist/esm/metadata-utility.js +30 -30
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types/metadata-utility.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/metadata-utility.d.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/icon
|
|
2
2
|
|
|
3
|
+
## 27.9.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#196046](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/196046)
|
|
8
|
+
[`ae7d1b0c33757`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ae7d1b0c33757) -
|
|
9
|
+
Removed core and utility keywords from the icon metadata
|
|
10
|
+
|
|
3
11
|
## 27.9.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/build/index.tsx
CHANGED
|
@@ -74,7 +74,7 @@ async function main() {
|
|
|
74
74
|
'@atlaskit/icon',
|
|
75
75
|
'core',
|
|
76
76
|
synonyms,
|
|
77
|
-
['icon'
|
|
77
|
+
['icon'],
|
|
78
78
|
coreIconMetadata,
|
|
79
79
|
migrationMap,
|
|
80
80
|
recommendedSmallIcons,
|
|
@@ -117,7 +117,7 @@ async function main() {
|
|
|
117
117
|
'@atlaskit/icon',
|
|
118
118
|
'utility',
|
|
119
119
|
synonyms,
|
|
120
|
-
['icon'
|
|
120
|
+
['icon'],
|
|
121
121
|
utilityIconMetadata,
|
|
122
122
|
migrationMap,
|
|
123
123
|
);
|