@atlaskit/storybook-addon-design-system 0.5.0 → 0.5.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.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
8
+
3
9
  ## 0.5.0
4
10
 
5
11
  ### Minor Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/storybook-addon-design-system",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/storybook-addon-design-system",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/storybook-addon-design-system",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "sideEffects": false
5
5
  }
@@ -0,0 +1 @@
1
+ export { withDesignTokens } from './tokens';
@@ -0,0 +1 @@
1
+ export { default as Tool } from './tool';
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ /**
3
+ * __Tool__
4
+ *
5
+ * ADS Toolbar UI, visible in the topbar of the storybook UI.
6
+ */
7
+ declare const Tool: () => JSX.Element;
8
+ export default Tool;
@@ -0,0 +1,5 @@
1
+ export declare const ADDON_ID = "ads-tokens";
2
+ export declare const TOOL_ID: string;
3
+ export declare const TITLE = "Design Tokens";
4
+ export declare const DECORATOR_ID = "withDesignTokens";
5
+ export declare const DECORATOR_PARAM = "DesignTokens";
@@ -0,0 +1,2 @@
1
+ declare const withDesignTokens: (...args: any) => any;
2
+ export default withDesignTokens;
@@ -0,0 +1 @@
1
+ export { default as withDesignTokens } from './decorator';
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export type Themes = 'light' | 'dark' | 'auto' | 'none' | 'split' | 'stack';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/storybook-addon-design-system",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Design token storybook addon",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "publishConfig": {