@dfds-ui/storybook-design 2.2.0-alpha.e010e72f → 2.2.0-alpha.eae7bbcd
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/cjs/components/ExampleContainer.d.ts +1 -1
- package/cjs/components/GlobalStorybookStyles.d.ts +2 -1
- package/cjs/components/GlobalStorybookStyles.js +1 -2
- package/cjs/components/MarkdownStory.d.ts +2 -1
- package/cjs/components/MarkdownStory.js +2 -14
- package/cjs/components/Paper.d.ts +1 -1
- package/cjs/components/Placeholder.js +5 -7
- package/cjs/components/StoryPage.d.ts +1 -1
- package/cjs/components/StoryPage.js +1 -2
- package/cjs/components/index.js +6 -6
- package/cjs/helpers/components.d.ts +13 -13
- package/cjs/helpers/components.js +34 -65
- package/cjs/helpers/decorators.d.ts +4 -3
- package/cjs/index.js +5 -5
- package/cjs/markdown/Markdown.d.ts +1 -1
- package/cjs/markdown/Markdown.js +8 -14
- package/cjs/markdown/Md.d.ts +2 -1
- package/cjs/markdown/index.js +2 -2
- package/components/ExampleContainer.d.ts +1 -1
- package/components/GlobalStorybookStyles.d.ts +2 -1
- package/components/GlobalStorybookStyles.js +1 -2
- package/components/MarkdownStory.d.ts +2 -1
- package/components/Paper.d.ts +1 -1
- package/components/StoryPage.d.ts +1 -1
- package/components/StoryPage.js +1 -2
- package/helpers/components.d.ts +13 -13
- package/helpers/components.js +10 -20
- package/helpers/decorators.d.ts +4 -3
- package/markdown/Markdown.d.ts +1 -1
- package/markdown/Md.d.ts +2 -1
- package/package.json +5 -5
package/helpers/decorators.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const withPadding: (space?: string) => (storyFn: (...args: any) => any) => React.JSX.Element;
|
|
3
|
+
export declare const withBackground: (color?: string) => (storyFn: (...args: any) => any) => React.JSX.Element;
|
|
4
|
+
export declare const withWidth: (width: string) => (storyFn: (...args: any) => any) => React.JSX.Element;
|
package/markdown/Markdown.d.ts
CHANGED
package/markdown/Md.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -3,22 +3,22 @@
|
|
|
3
3
|
"description": "Components and utils for use with Storybook within DFDS",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
|
-
"version": "2.2.0-alpha.
|
|
6
|
+
"version": "2.2.0-alpha.eae7bbcd",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"main": "./cjs/index.js",
|
|
9
9
|
"module": "./index.js",
|
|
10
10
|
"esnext": "./index.js",
|
|
11
11
|
"typings": "./index.d.ts",
|
|
12
12
|
"peerDependencies": {
|
|
13
|
-
"@emotion/react": "11.
|
|
14
|
-
"@emotion/styled": "11.
|
|
13
|
+
"@emotion/react": "11.14.0",
|
|
14
|
+
"@emotion/styled": "11.14.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@dfds-ui/icons": "2.2.0-alpha.
|
|
17
|
+
"@dfds-ui/icons": "2.2.0-alpha.eae7bbcd",
|
|
18
18
|
"react-markdown": "^5.0.3",
|
|
19
19
|
"react-markdown-github-renderers": "^1.0.3"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "eae7bbcd0c1bf58cb5af83776b44c10afde89654",
|
|
22
22
|
"publishConfig": {
|
|
23
23
|
"access": "public"
|
|
24
24
|
}
|