@atlaskit/storybook-addon-design-system 0.3.2 → 0.3.3

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.3.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`9827dcb82b8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9827dcb82b8) - No-op change to introduce spacing tokens to design system components.
8
+
3
9
  ## 0.3.2
4
10
 
5
11
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/storybook-addon-design-system",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/storybook-addon-design-system",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/storybook-addon-design-system",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
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,4 @@
1
+ import '@atlaskit/tokens/css/atlassian-light.css';
2
+ import '@atlaskit/tokens/css/atlassian-dark.css';
3
+ declare const withDesignTokens: (...args: any) => any;
4
+ export default withDesignTokens;
@@ -0,0 +1 @@
1
+ export { default as withDesignTokens } from './decorator';
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export declare type Themes = 'light' | 'dark' | 'none' | 'split' | 'stack';
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@atlaskit/storybook-addon-design-system",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Design token storybook addon",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "publishConfig": {
7
7
  "registry": "https://registry.npmjs.org/"
8
8
  },
9
9
  "atlassian": {
10
+ "disableProductCI": true,
10
11
  "team": "Design System Team",
11
12
  "releaseModel": "scheduled",
12
13
  "website": {
@@ -20,6 +21,14 @@
20
21
  "module": "dist/esm/index.js",
21
22
  "module:es2019": "dist/es2019/index.js",
22
23
  "types": "dist/types/index.d.ts",
24
+ "typesVersions": {
25
+ ">=4.0 <4.5": {
26
+ "*": [
27
+ "dist/types-ts4.0/*",
28
+ "dist/types-ts4.0/index.d.ts"
29
+ ]
30
+ }
31
+ },
23
32
  "sideEffects": false,
24
33
  "atlaskit:src": "src/index.tsx",
25
34
  "af:exports": {
package/report.api.md CHANGED
@@ -1,6 +1,8 @@
1
- ## API Report File for "@atlaskit/storybook-addon-design-system"
1
+ ## API Report File for "@atlaskit/storybook-addon-design-system".
2
2
 
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
3
+ > Do not edit this file. This report is auto-generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
4
6
 
5
7
  ```ts
6
8
  export declare const withDesignTokens: (...args: any) => any;