@atlaskit/icon-file-type 6.4.1 → 6.4.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 +6 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types-ts4.5/entry-points/metadata.d.ts +1 -0
- package/dist/types-ts4.5/index.d.ts +1 -0
- package/dist/types-ts4.5/metadata.d.ts +16 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../metadata';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '@atlaskit/icon/base';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by the build process.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*
|
|
7
|
+
* To change the format of this file, modify build/icon/createIconDocs.js.
|
|
8
|
+
* Add synonyms in icon/icons/synonyms.js.
|
|
9
|
+
*/
|
|
10
|
+
interface Data {
|
|
11
|
+
keywords: string[];
|
|
12
|
+
componentName: string;
|
|
13
|
+
package: string;
|
|
14
|
+
}
|
|
15
|
+
declare const metaData: Record<string, Data>;
|
|
16
|
+
export default metaData;
|
package/package.json
CHANGED