@atlaskit/storybook-addon-design-system 0.7.0 → 0.7.1

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/storybook-addon-design-system
2
2
 
3
+ ## 0.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#93943](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/93943) [`611f5e98470c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/611f5e98470c) - Removes fallback colors from styles
8
+
3
9
  ## 0.7.0
4
10
 
5
11
  ### Minor Changes
@@ -24,8 +24,8 @@ var splitColumnStyles = {
24
24
  height: '100vh',
25
25
  overflow: 'auto',
26
26
  padding: '10px',
27
- background: (0, _tokens.token)('elevation.surface', 'white'),
28
- color: (0, _tokens.token)('color.text', '#172B4D')
27
+ background: (0, _tokens.token)('elevation.surface'),
28
+ color: (0, _tokens.token)('color.text')
29
29
  };
30
30
  var stackColumnStyles = {
31
31
  position: 'absolute',
@@ -34,8 +34,8 @@ var stackColumnStyles = {
34
34
  height: '50%',
35
35
  overflow: 'auto',
36
36
  padding: '10px',
37
- background: (0, _tokens.token)('elevation.surface', 'white'),
38
- color: (0, _tokens.token)('color.text', '#172B4D')
37
+ background: (0, _tokens.token)('elevation.surface'),
38
+ color: (0, _tokens.token)('color.text')
39
39
  };
40
40
  var withDesignTokens = (0, _addons.makeDecorator)({
41
41
  name: _constants.DECORATOR_ID,
@@ -9,8 +9,8 @@ const splitColumnStyles = {
9
9
  height: '100vh',
10
10
  overflow: 'auto',
11
11
  padding: '10px',
12
- background: token('elevation.surface', 'white'),
13
- color: token('color.text', '#172B4D')
12
+ background: token('elevation.surface'),
13
+ color: token('color.text')
14
14
  };
15
15
  const stackColumnStyles = {
16
16
  position: 'absolute',
@@ -19,8 +19,8 @@ const stackColumnStyles = {
19
19
  height: '50%',
20
20
  overflow: 'auto',
21
21
  padding: '10px',
22
- background: token('elevation.surface', 'white'),
23
- color: token('color.text', '#172B4D')
22
+ background: token('elevation.surface'),
23
+ color: token('color.text')
24
24
  };
25
25
  const withDesignTokens = makeDecorator({
26
26
  name: DECORATOR_ID,
@@ -14,8 +14,8 @@ var splitColumnStyles = {
14
14
  height: '100vh',
15
15
  overflow: 'auto',
16
16
  padding: '10px',
17
- background: token('elevation.surface', 'white'),
18
- color: token('color.text', '#172B4D')
17
+ background: token('elevation.surface'),
18
+ color: token('color.text')
19
19
  };
20
20
  var stackColumnStyles = {
21
21
  position: 'absolute',
@@ -24,8 +24,8 @@ var stackColumnStyles = {
24
24
  height: '50%',
25
25
  overflow: 'auto',
26
26
  padding: '10px',
27
- background: token('elevation.surface', 'white'),
28
- color: token('color.text', '#172B4D')
27
+ background: token('elevation.surface'),
28
+ color: token('color.text')
29
29
  };
30
30
  var withDesignTokens = makeDecorator({
31
31
  name: DECORATOR_ID,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/storybook-addon-design-system",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Design token storybook addon",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "publishConfig": {