Props: #9592 styled repro

This commit is contained in:
Michael Shilman 2020-02-15 00:06:34 +08:00
parent 92f8c43334
commit c8c19a2e4e
5 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1,33 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`react component properties 9592-ts-styled-props 1`] = `
"import React from 'react';
import styled from 'styled-components';
const StyledHello = styled.div\`
color: red;
\`;
const Hello = ({
title
}) => {
return React.createElement(StyledHello, {
className: \\"hello\\"
}, \\"Hello Component \\", title);
};
export const component = Hello;
Hello.__docgenInfo = {
\\"description\\": \\"\\",
\\"methods\\": [],
\\"displayName\\": \\"Hello\\",
\\"props\\": {
\\"title\\": {
\\"required\\": true,
\\"tsType\\": {
\\"name\\": \\"string\\"
},
\\"description\\": \\"\\"
}
}
};"
`;

View File

@ -0,0 +1,16 @@
import React from 'react';
import styled from 'styled-components';
interface HelloProps {
title: string;
}
const StyledHello = styled.div`
color: red;
`;
const Hello = ({ title }: HelloProps) => {
return <StyledHello className="hello">Hello Component {title}</StyledHello>;
};
export const component = Hello;

View File

@ -0,0 +1,21 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`react component properties 9592-ts-styled-props 1`] = `
Object {
"rows": Array [
Object {
"defaultValue": Object {
"detail": undefined,
"summary": "0",
},
"description": "",
"name": "title",
"required": true,
"type": Object {
"detail": undefined,
"summary": "string",
},
},
],
}
`;

View File

@ -18,6 +18,7 @@ const fixtures = [
'8740-ts-multi-props',
'8894-ts-forward-ref',
'9556-ts-react-default-exports',
'9592-ts-styled-props',
];
const stories = storiesOf('Properties/React', module);

View File

@ -10,3 +10,4 @@ declare module 'babel-plugin-react-docgen';
declare module 'require-from-string';
declare module 'tmp';
declare module 'cross-spawn';
declare module 'styled-components';