mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Props: #8143 repro for imported types
This commit is contained in:
parent
e3927d9cea
commit
412977380d
@ -0,0 +1,22 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`react component properties 8143-ts-imported-types 1`] = `
|
||||
"import React from 'react';
|
||||
export const FooComponent = foo => React.createElement(React.Fragment, null, JSON.stringify(foo));
|
||||
export const component = FooComponent;
|
||||
FooComponent.__docgenInfo = {
|
||||
\\"description\\": \\"\\",
|
||||
\\"methods\\": [],
|
||||
\\"displayName\\": \\"FooComponent\\",
|
||||
\\"props\\": {
|
||||
\\"bar\\": {
|
||||
\\"required\\": true,
|
||||
\\"tsType\\": {
|
||||
\\"name\\": \\"Foo['bar']\\",
|
||||
\\"raw\\": \\"Foo['bar']\\"
|
||||
},
|
||||
\\"description\\": \\"\\"
|
||||
}
|
||||
}
|
||||
};"
|
||||
`;
|
@ -0,0 +1,10 @@
|
||||
import React from 'react';
|
||||
import { Foo } from './types';
|
||||
|
||||
interface FooProps {
|
||||
bar: Foo['bar'];
|
||||
}
|
||||
|
||||
export const FooComponent = (foo: FooProps) => <>{JSON.stringify(foo)}</>;
|
||||
|
||||
export const component = FooComponent;
|
@ -0,0 +1,21 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`react component properties 8143-ts-imported-types 1`] = `
|
||||
Object {
|
||||
"rows": Array [
|
||||
Object {
|
||||
"defaultValue": Object {
|
||||
"detail": undefined,
|
||||
"summary": "0",
|
||||
},
|
||||
"description": "",
|
||||
"name": "bar",
|
||||
"required": true,
|
||||
"type": Object {
|
||||
"detail": undefined,
|
||||
"summary": "Foo['bar']",
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
`;
|
@ -0,0 +1,3 @@
|
||||
export interface Foo {
|
||||
bar: number;
|
||||
}
|
@ -11,6 +11,7 @@ const fixtures = [
|
||||
'9626-js-default-values',
|
||||
'9668-js-proptypes-no-jsdoc',
|
||||
'8143-ts-react-fc-generics',
|
||||
'8143-ts-imported-types',
|
||||
];
|
||||
|
||||
const stories = storiesOf('Properties/React', module);
|
||||
|
Loading…
x
Reference in New Issue
Block a user