@dfds-ui/storybook-design 2.2.0-alpha.9edc847c → 2.2.0-alpha.af6aeee8

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.
@@ -0,0 +1,8 @@
1
+ declare const ExampleContainer: import("@emotion/styled").StyledComponent<{
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
4
+ } & {
5
+ headline?: string;
6
+ dark?: boolean;
7
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
8
+ export default ExampleContainer;
@@ -0,0 +1,8 @@
1
+ type PaperProps = {
2
+ width?: number | string;
3
+ };
4
+ declare const Paper: import("@emotion/styled").StyledComponent<{
5
+ theme?: import("@emotion/react").Theme;
6
+ as?: React.ElementType;
7
+ } & PaperProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
8
+ export default Paper;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ type PlaceholderProps = {
3
+ children?: React.ReactNode;
4
+ width: number;
5
+ height: number;
6
+ };
7
+ declare const Placeholder: React.FunctionComponent<PlaceholderProps>;
8
+ export default Placeholder;
@@ -0,0 +1,5 @@
1
+ declare const StoryPage: import("@emotion/styled").StyledComponent<{
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
4
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
5
+ export default StoryPage;
@@ -0,0 +1,4 @@
1
+ export { default as StoryPage } from './StoryPage';
2
+ export { default as ExampleContainer } from './ExampleContainer';
3
+ export { default as Paper } from './Paper';
4
+ export { default as Placeholder } from './Placeholder';
package/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './components';
2
+ export * from './markdown';
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ declare const Markdown: ({ children }: {
3
+ source?: any;
4
+ children: React.ReactNode;
5
+ }) => React.JSX.Element;
6
+ export default Markdown;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ export declare const Md: (strings: TemplateStringsArray, ...values: string[]) => React.JSX.Element;
3
+ export default Md;
@@ -0,0 +1,2 @@
1
+ export { default as Markdown } from './Markdown';
2
+ export { default as Md } from './Md';
package/package.json CHANGED
@@ -3,7 +3,7 @@
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.9edc847c",
6
+ "version": "2.2.0-alpha.af6aeee8",
7
7
  "sideEffects": false,
8
8
  "main": "./cjs/index.js",
9
9
  "module": "./index.js",
@@ -14,10 +14,10 @@
14
14
  "@emotion/styled": "11.14.1"
15
15
  },
16
16
  "dependencies": {
17
- "@dfds-ui/icons": "2.2.0-alpha.9edc847c",
17
+ "@dfds-ui/icons": "2.2.0-alpha.af6aeee8",
18
18
  "marked": "18.0.3"
19
19
  },
20
- "gitHead": "9edc847c21d2f86054d768d1f84d34027ca9d675",
20
+ "gitHead": "af6aeee86fe74e3962e75a24f028385142a42e1d",
21
21
  "publishConfig": {
22
22
  "access": "public"
23
23
  }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes