@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.
- package/components/ExampleContainer.d.ts +8 -0
- package/components/Paper.d.ts +8 -0
- package/components/Placeholder.d.ts +8 -0
- package/components/StoryPage.d.ts +5 -0
- package/components/index.d.ts +4 -0
- package/index.d.ts +2 -0
- package/markdown/Markdown.d.ts +6 -0
- package/markdown/Md.d.ts +3 -0
- package/markdown/index.d.ts +2 -0
- package/package.json +3 -3
- /package/{src → cjs}/components/ExampleContainer.d.ts +0 -0
- /package/{src → cjs}/components/Paper.d.ts +0 -0
- /package/{src → cjs}/components/Placeholder.d.ts +0 -0
- /package/{src → cjs}/components/StoryPage.d.ts +0 -0
- /package/{src → cjs}/components/index.d.ts +0 -0
- /package/{src → cjs}/index.d.ts +0 -0
- /package/{src → cjs}/markdown/Markdown.d.ts +0 -0
- /package/{src → cjs}/markdown/Md.d.ts +0 -0
- /package/{src → cjs}/markdown/index.d.ts +0 -0
|
@@ -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,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;
|
package/index.d.ts
ADDED
package/markdown/Md.d.ts
ADDED
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.
|
|
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.
|
|
17
|
+
"@dfds-ui/icons": "2.2.0-alpha.af6aeee8",
|
|
18
18
|
"marked": "18.0.3"
|
|
19
19
|
},
|
|
20
|
-
"gitHead": "
|
|
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
|
/package/{src → cjs}/index.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|