@atlaskit/icon-file-type 7.0.10 → 7.0.11
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,12 @@
|
|
|
1
1
|
# @atlaskit/icon-file-type
|
|
2
2
|
|
|
3
|
+
## 7.0.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`df0ac7e2afd63`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/df0ac7e2afd63) -
|
|
8
|
+
Remove reference to icon-priority within codemod
|
|
9
|
+
|
|
3
10
|
## 7.0.10
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -115,13 +115,11 @@ describe('Update imports', () => {
|
|
|
115
115
|
import { metadata } from '@atlaskit/icon';
|
|
116
116
|
import { metadata as objectIconMetadata } from '@atlaskit/icon-object';
|
|
117
117
|
import { metadata as fileTypeIconMetadata } from '@atlaskit/icon-file-type';
|
|
118
|
-
import { metadata as priorityIconMetadata } from '@atlaskit/icon-priority';
|
|
119
118
|
`,
|
|
120
119
|
`
|
|
121
120
|
import { metadata } from '@atlaskit/icon';
|
|
122
121
|
import { metadata as objectIconMetadata } from '@atlaskit/icon-object';
|
|
123
122
|
import fileTypeIconMetadata from '@atlaskit/icon-file-type/metadata';
|
|
124
|
-
import { metadata as priorityIconMetadata } from '@atlaskit/icon-priority';
|
|
125
123
|
`,
|
|
126
124
|
'should work as expected on a real-world case',
|
|
127
125
|
);
|
package/package.json
CHANGED