diff --git a/addons/docs/src/frameworks/react/__testfixtures__/9668-js-proptypes-no-jsdoc/docgen.snapshot b/addons/docs/src/frameworks/react/__testfixtures__/9668-js-proptypes-no-jsdoc/docgen.snapshot new file mode 100644 index 00000000000..36193a4d8e6 --- /dev/null +++ b/addons/docs/src/frameworks/react/__testfixtures__/9668-js-proptypes-no-jsdoc/docgen.snapshot @@ -0,0 +1,40 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`react component properties 9668-js-proptypes-no-jsdoc 1`] = ` +"/* eslint-disable react/require-default-props */ + +/* eslint-disable react/no-unused-prop-types */ + +/* eslint-disable react/forbid-prop-types */ +import React from 'react'; +import PropTypes from 'prop-types'; + +const CCTable = props => React.createElement(React.Fragment, null, JSON.stringify(props)); + +CCTable.propTypes = { + heads: PropTypes.array.isRequired, + onAddClick: PropTypes.func +}; +export const component = CCTable; +CCTable.__docgenInfo = { + \\"description\\": \\"\\", + \\"methods\\": [], + \\"displayName\\": \\"CCTable\\", + \\"props\\": { + \\"heads\\": { + \\"type\\": { + \\"name\\": \\"array\\" + }, + \\"required\\": true, + \\"description\\": \\"\\" + }, + \\"onAddClick\\": { + \\"type\\": { + \\"name\\": \\"func\\" + }, + \\"required\\": false, + \\"description\\": \\"\\" + } + } +};" +`; diff --git a/addons/docs/src/frameworks/react/__testfixtures__/9668-js-proptypes-no-jsdoc/input.js b/addons/docs/src/frameworks/react/__testfixtures__/9668-js-proptypes-no-jsdoc/input.js new file mode 100644 index 00000000000..738e126bd17 --- /dev/null +++ b/addons/docs/src/frameworks/react/__testfixtures__/9668-js-proptypes-no-jsdoc/input.js @@ -0,0 +1,13 @@ +/* eslint-disable react/require-default-props */ +/* eslint-disable react/no-unused-prop-types */ +/* eslint-disable react/forbid-prop-types */ +import React from 'react'; +import PropTypes from 'prop-types'; + +const CCTable = props => <>{JSON.stringify(props)}; +CCTable.propTypes = { + heads: PropTypes.array.isRequired, + onAddClick: PropTypes.func, +}; + +export const component = CCTable; diff --git a/addons/docs/src/frameworks/react/__testfixtures__/9668-js-proptypes-no-jsdoc/properties.snapshot b/addons/docs/src/frameworks/react/__testfixtures__/9668-js-proptypes-no-jsdoc/properties.snapshot new file mode 100644 index 00000000000..4dea4decbac --- /dev/null +++ b/addons/docs/src/frameworks/react/__testfixtures__/9668-js-proptypes-no-jsdoc/properties.snapshot @@ -0,0 +1,28 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`react component properties 9668-js-proptypes-no-jsdoc 1`] = ` +Object { + "rows": Array [ + Object { + "defaultValue": null, + "description": "", + "name": "heads", + "required": true, + "type": Object { + "detail": undefined, + "summary": "array", + }, + }, + Object { + "defaultValue": null, + "description": "", + "name": "onAddClick", + "required": false, + "type": Object { + "detail": undefined, + "summary": "func", + }, + }, + ], +} +`; diff --git a/addons/docs/src/frameworks/react/react-properties.stories.tsx b/addons/docs/src/frameworks/react/react-properties.stories.tsx index 952ded645eb..6c1f94842f6 100644 --- a/addons/docs/src/frameworks/react/react-properties.stories.tsx +++ b/addons/docs/src/frameworks/react/react-properties.stories.tsx @@ -9,6 +9,7 @@ const fixtures = [ '9399-js-proptypes-shape', '8663-js-styled-components', '9626-js-default-values', + '9668-js-proptypes-no-jsdoc', ]; const stories = storiesOf('Properties/React', module);