@atlaskit/storybook-addon-design-system 0.2.3 → 0.2.6

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,23 @@
1
1
  # @atlaskit/storybook-addon-design-system
2
2
 
3
+ ## 0.2.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [`4942487a9f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4942487a9f6) - Fixes internal representation of CSS entrypoints for themes. This is an internal change only and does not effect public APIs.
8
+
9
+ ## 0.2.5
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 0.2.4
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 0.2.3
4
22
 
5
23
  ### Patch Changes
@@ -0,0 +1,5 @@
1
+ ---
2
+ order: 0
3
+ ---
4
+
5
+ examples
File without changes
@@ -0,0 +1,5 @@
1
+ ---
2
+ order: 2
3
+ ---
4
+
5
+ usage
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/storybook-addon-design-system",
3
- "version": "0.2.3",
3
+ "version": "0.2.6",
4
4
  "sideEffects": false
5
5
  }
@@ -1,9 +1,7 @@
1
1
  import React, { Fragment } from 'react';
2
2
  import { makeDecorator, useEffect } from '@storybook/addons';
3
- import { token } from '@atlaskit/tokens'; // eslint-disable-next-line
4
-
5
- import '@atlaskit/tokens/css/atlassian-light.css'; // eslint-disable-next-line
6
-
3
+ import { token } from '@atlaskit/tokens';
4
+ import '@atlaskit/tokens/css/atlassian-light.css';
7
5
  import '@atlaskit/tokens/css/atlassian-dark.css';
8
6
  import { DECORATOR_ID, DECORATOR_PARAM } from './constants';
9
7
  const splitColumnStyles = {
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/storybook-addon-design-system",
3
- "version": "0.2.3",
3
+ "version": "0.2.6",
4
4
  "sideEffects": false
5
5
  }
@@ -6,10 +6,8 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
6
6
 
7
7
  import React, { Fragment } from 'react';
8
8
  import { makeDecorator, useEffect } from '@storybook/addons';
9
- import { token } from '@atlaskit/tokens'; // eslint-disable-next-line
10
-
11
- import '@atlaskit/tokens/css/atlassian-light.css'; // eslint-disable-next-line
12
-
9
+ import { token } from '@atlaskit/tokens';
10
+ import '@atlaskit/tokens/css/atlassian-light.css';
13
11
  import '@atlaskit/tokens/css/atlassian-dark.css';
14
12
  import { DECORATOR_ID, DECORATOR_PARAM } from './constants';
15
13
  var splitColumnStyles = {
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/storybook-addon-design-system",
3
- "version": "0.2.3",
3
+ "version": "0.2.6",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/storybook-addon-design-system",
3
- "version": "0.2.3",
3
+ "version": "0.2.6",
4
4
  "description": "Design token storybook addon",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "publishConfig": {
@@ -8,7 +8,12 @@
8
8
  },
9
9
  "atlassian": {
10
10
  "team": "Design System Team",
11
- "releaseModel": "scheduled"
11
+ "releaseModel": "scheduled",
12
+ "website": {
13
+ "name": "Storybook addon",
14
+ "category": "Tooling",
15
+ "draft": true
16
+ }
12
17
  },
13
18
  "repository": "https://bitbucket.org/atlassian/atlassian-frontend",
14
19
  "main": "dist/cjs/index.js",
@@ -21,7 +26,7 @@
21
26
  ".": "./src/index.tsx"
22
27
  },
23
28
  "dependencies": {
24
- "@atlaskit/tokens": "^0.7.0",
29
+ "@atlaskit/tokens": "^0.9.0",
25
30
  "@babel/runtime": "^7.0.0",
26
31
  "@storybook/addons": "^6.4.0",
27
32
  "@storybook/api": "^6.4.0",
@@ -43,5 +48,6 @@
43
48
  "styling": "emotion"
44
49
  }
45
50
  },
51
+ "homepage": "https://atlassian.design/components/storybook-addon-design-system",
46
52
  "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
47
53
  }