@atlaskit/icon-file-type 7.0.7 → 7.0.8

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,11 @@
1
1
  # @atlaskit/icon-file-type
2
2
 
3
+ ## 7.0.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 7.0.7
4
10
 
5
11
  ### Patch Changes
@@ -1,11 +1,12 @@
1
1
  {
2
- "extends": "../../../../tsconfig.entry-points.confluence.json",
2
+ "extends": "../../../../tsconfig.local-consumption.json",
3
3
  "compilerOptions": {
4
4
  "declaration": true,
5
5
  "target": "es5",
6
6
  "outDir": "../../../../../confluence/tsDist/@atlaskit__icon-file-type",
7
7
  "rootDir": "../",
8
- "composite": true
8
+ "composite": true,
9
+ "noCheck": true
9
10
  },
10
11
  "include": [
11
12
  "../src/**/*.ts",
@@ -1,11 +1,12 @@
1
1
  {
2
- "extends": "../../../../tsconfig.entry-points.jira.json",
2
+ "extends": "../../../../tsconfig.local-consumption.json",
3
3
  "compilerOptions": {
4
4
  "declaration": true,
5
5
  "target": "es5",
6
- "outDir": "../../../../../tsDist/@atlaskit__icon-file-type/app",
6
+ "outDir": "../../../../../jira/tsDist/@atlaskit__icon-file-type/app",
7
7
  "rootDir": "../",
8
- "composite": true
8
+ "composite": true,
9
+ "noCheck": true
9
10
  },
10
11
  "include": [
11
12
  "../src/**/*.ts",
@@ -1,11 +1,12 @@
1
1
  {
2
- "extends": "../../../../tsconfig.entry-points.products.json",
2
+ "extends": "../../../../tsconfig.local-consumption.json",
3
3
  "compilerOptions": {
4
4
  "declaration": true,
5
5
  "target": "es5",
6
6
  "outDir": "../../../../../tsDist/@atlaskit__icon-file-type/app",
7
7
  "rootDir": "../",
8
- "composite": true
8
+ "composite": true,
9
+ "noCheck": true
9
10
  },
10
11
  "include": [
11
12
  "../src/**/*.ts",
package/docs/0-intro.tsx CHANGED
@@ -4,7 +4,7 @@ import { DocsContentTabs } from '@atlaskit/media-test-helpers';
4
4
  import UsageTab from './content/usage';
5
5
  import PropsDefinitionTab from './content/props-definition';
6
6
 
7
- export default md`
7
+ const _default_1: any = md`
8
8
  ### Description
9
9
  This package provides the collections of icons for the different types of content used across Atlassian products.
10
10
 
@@ -17,3 +17,4 @@ This package provides the collections of icons for the different types of conten
17
17
  />
18
18
  )}
19
19
  `;
20
+ export default _default_1;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { md, PropsTable } from '@atlaskit/docs';
3
3
 
4
- export default md`
4
+ const _default_1: any = md`
5
5
  # Props
6
6
 
7
7
  This package utilizes the \`@atlaskit/icon\` component and accepts the following props:
@@ -26,3 +26,4 @@ This package utilizes the \`@atlaskit/icon\` component and accepts the following
26
26
  )}
27
27
 
28
28
  `;
29
+ export default _default_1;
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  import { md } from '@atlaskit/docs';
3
3
  import IconExplorer from '../../examples/icon-explorer';
4
4
 
5
- export default md`
5
+ const _default_1: any = md`
6
6
  ##
7
7
  ## Icon Explorer
8
8
  ${
@@ -15,3 +15,4 @@ export default md`
15
15
  }
16
16
 
17
17
  `;
18
+ export default _default_1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/icon-file-type",
3
- "version": "7.0.7",
3
+ "version": "7.0.8",
4
4
  "description": "A file type icon is used to represent specific types of content used across Atlassian products.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -32,7 +32,7 @@
32
32
  "build-glyphs": "ts-node --project ../../../tsconfig.node.json ./build/index.ts"
33
33
  },
34
34
  "dependencies": {
35
- "@atlaskit/icon": "^29.0.0",
35
+ "@atlaskit/icon": "^30.0.0",
36
36
  "@babel/runtime": "^7.0.0"
37
37
  },
38
38
  "peerDependencies": {
@@ -1,23 +0,0 @@
1
- {
2
- "extends": "../tsconfig",
3
- "compilerOptions": {
4
- "declaration": true,
5
- "target": "es5",
6
- "paths": {}
7
- },
8
- "include": [
9
- "../src/**/*.ts",
10
- "../src/**/*.tsx"
11
- ],
12
- "exclude": [
13
- "../src/**/__tests__/*",
14
- "../src/**/*.test.*",
15
- "../src/**/test.*",
16
- "../src/**/examples.*",
17
- "../src/**/examples/*",
18
- "../src/**/examples/**/*",
19
- "../src/**/*.stories.*",
20
- "../src/**/stories/*",
21
- "../src/**/stories/**/*"
22
- ]
23
- }