@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.
@@ -1,3 +1,4 @@
1
- export declare const withPadding: (space?: string) => (storyFn: (...args: any) => any) => JSX.Element;
2
- export declare const withBackground: (color?: string) => (storyFn: (...args: any) => any) => JSX.Element;
3
- export declare const withWidth: (width: string) => (storyFn: (...args: any) => any) => JSX.Element;
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;
@@ -2,5 +2,5 @@ import React from 'react';
2
2
  declare const Markdown: ({ children, ...rest }: {
3
3
  source?: any;
4
4
  children: React.ReactNode;
5
- }) => JSX.Element;
5
+ }) => React.JSX.Element;
6
6
  export default Markdown;
package/markdown/Md.d.ts CHANGED
@@ -1,2 +1,3 @@
1
- export declare const Md: (strings: TemplateStringsArray, ...values: string[]) => JSX.Element;
1
+ import React from 'react';
2
+ export declare const Md: (strings: TemplateStringsArray, ...values: string[]) => React.JSX.Element;
2
3
  export default Md;
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.e010e72f",
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.11.4",
14
- "@emotion/styled": "11.11.5"
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.e010e72f",
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": "e010e72fc63a082f93fa8023dc3c751d4fbf2016",
21
+ "gitHead": "eae7bbcd0c1bf58cb5af83776b44c10afde89654",
22
22
  "publishConfig": {
23
23
  "access": "public"
24
24
  }