@atlaskit/storybook-addon-design-system 0.2.5 → 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 +6 -0
- package/constellation/index/examples.mdx +5 -0
- package/constellation/index/props.mdx +0 -0
- package/constellation/index/usage.mdx +5 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/tokens/decorator.js +2 -4
- package/dist/es2019/version.json +1 -1
- package/dist/esm/tokens/decorator.js +2 -4
- package/dist/esm/version.json +1 -1
- package/package.json +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
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
|
+
|
|
3
9
|
## 0.2.5
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
File without changes
|
package/dist/cjs/version.json
CHANGED
|
@@ -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';
|
|
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 = {
|
package/dist/es2019/version.json
CHANGED
|
@@ -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';
|
|
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 = {
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/storybook-addon-design-system",
|
|
3
|
-
"version": "0.2.
|
|
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",
|
|
@@ -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
|
}
|