Merge remote-tracking branch 'origin/next' into remove-react-classes-global

This commit is contained in:
Ian VanSchooten 2022-09-30 08:39:36 -04:00
commit c83bb7dc41
202 changed files with 6108 additions and 3557 deletions

View File

@ -151,7 +151,7 @@ jobs:
executor:
class: medium+
name: sb_node_14_browsers
parallelism: 13
parallelism: 12
steps:
- git-shallow-clone/checkout_advanced:
clone_options: '--depth 1 --verbose'

View File

@ -15,8 +15,6 @@ scripts/repros-generator
*.d.ts
examples/ember-cli/.storybook/preview-head.html
examples/official-storybook/tests/addon-jest.test.js
examples/cra-ts-kitchen-sink/*.json
examples/cra-ts-kitchen-sink/public/*
ember-output
.yarn
!.remarkrc.js

View File

@ -1,3 +0,0 @@
DISABLE_ESLINT_PLUGIN=true
SKIP_PREFLIGHT_CHECK=true
NODE_PATH=src

View File

@ -1,15 +0,0 @@
import React from 'react';
import { addons, types } from '@storybook/addons';
const ID = 'local-addon';
const LocalAddonPanel = () => <>Local addon</>;
addons.register(ID, (api) =>
addons.add(ID, {
title: ID,
type: types.PANEL,
match: () => true,
render: ({ active, key }) => (active ? <LocalAddonPanel key={key} /> : null),
})
);

View File

@ -1,3 +0,0 @@
module.exports = {
managerEntries: [],
};

View File

@ -1,44 +0,0 @@
import type { StorybookConfig } from '@storybook/react-webpack5';
const path = require('path');
const mainConfig: StorybookConfig = {
stories: ['../src/components', '../src/stories'],
logLevel: 'debug',
addons: [
'@storybook/preset-create-react-app',
'@storybook/addon-docs',
'@storybook/addon-actions',
'@storybook/addon-links',
'@storybook/addon-a11y',
'@storybook/addon-highlight',
'./localAddon/manager.tsx',
'./localAddon/preset.ts',
],
// add monorepo root as a valid directory to import modules from
webpackFinal: (config) => {
const resolvePlugins = config.resolve?.plugins;
if (Array.isArray(resolvePlugins)) {
resolvePlugins.forEach((p) => {
// @ts-expect-error (Converted from ts-ignore)
const appSrcs = p.appSrcs as unknown as string[];
if (Array.isArray(appSrcs)) {
appSrcs.push(path.join(__dirname, '..', '..', '..'));
}
});
}
return config;
},
core: {
channelOptions: { allowFunction: false, maxDepth: 10 },
disableTelemetry: true,
},
staticDirs: ['../public'],
features: {
buildStoriesJson: true,
breakingChangesV7: true,
},
framework: '@storybook/react-webpack5',
};
module.exports = mainConfig;

View File

@ -1,6 +0,0 @@
export const parameters = {
options: {
brandTitle: 'CRA TypeScript Kitchen Sink',
brandUrl: 'https://github.com/storybookjs/storybook/tree/master/examples/cra-ts-kitchen-sink',
},
};

View File

@ -1,44 +0,0 @@
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Scripts
In the project directory, you can run:
### `yarn start`
Runs the app in the development mode.<br />
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
The page will reload if you make edits.<br />
You will also see any lint errors in the console.
### `yarn test`
Launches the test runner in the interactive watch mode.<br />
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
### `yarn build`
Builds the app for production to the `build` folder.<br />
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.<br />
Your app is ready to be deployed!
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
### `yarn eject`
**Note: this is a one-way operation. Once you `eject`, you cant go back!**
If you arent satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point youre on your own.
You dont have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldnt feel obligated to use this feature. However we understand that this tool wouldnt be useful if you couldnt customize it when you are ready for it.
## Learn More
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
To learn React, check out the [React documentation](https://reactjs.org/).

View File

@ -1,62 +0,0 @@
{
"name": "cra-ts-kitchen-sink",
"version": "7.0.0-alpha.34",
"private": true,
"scripts": {
"build": "react-scripts build",
"build-storybook": "storybook build",
"eject": "react-scripts eject",
"start": "react-scripts start",
"storybook": "storybook dev -p 9009 --no-manager-cache",
"test": "react-scripts test"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@types/jest": "25.2.3",
"@types/node": "^14.14.20 || ^16.0.0",
"@types/react": "^16.14.23",
"@types/react-dom": "^16.9.14",
"prop-types": "^15.7.2",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-scripts": "^5.0.1",
"typescript": "~4.6.3"
},
"devDependencies": {
"@storybook/addon-a11y": "7.0.0-alpha.34",
"@storybook/addon-actions": "7.0.0-alpha.34",
"@storybook/addon-docs": "7.0.0-alpha.34",
"@storybook/addon-highlight": "7.0.0-alpha.34",
"@storybook/addon-links": "7.0.0-alpha.34",
"@storybook/addons": "7.0.0-alpha.34",
"@storybook/builder-webpack5": "7.0.0-alpha.34",
"@storybook/preset-create-react-app": "^4.1.0",
"@storybook/react": "7.0.0-alpha.34",
"@storybook/react-webpack5": "7.0.0-alpha.34",
"@types/enzyme": "^3.10.8",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.9.1",
"enzyme-to-json": "^3.6.1",
"fork-ts-checker-webpack-plugin": "^7.2.6",
"react-moment-proptypes": "^1.7.0",
"storybook": "7.0.0-alpha.34",
"ts-node": "^10.4.0",
"webpack": "5"
},
"storybook": {
"chromatic": {
"projectToken": "19whyj1tlac"
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

View File

@ -1,41 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Web site created using create-react-app" />
<link rel="apple-touch-icon" href="logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

View File

@ -1,25 +0,0 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}

View File

@ -1,2 +0,0 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *

View File

@ -1,22 +0,0 @@
.App {
text-align: center;
}
.App-logo {
height: 40vmin;
}
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #09d3ac;
}

View File

@ -1,26 +0,0 @@
import React, { FC } from 'react';
import logo from './logo.svg';
import './App.css';
const App: FC = () => {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.tsx</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
};
export default App;

View File

@ -1,19 +0,0 @@
import React from 'react';
import Button, { Type } from './Button';
export default {
title: 'Docgen/Button',
component: Button,
};
export const SimpleButton = () => {
const x = 0;
return <Button>OK {x}</Button>;
};
const typeOptions = {
Default: 'default',
Action: 'action',
};
export const WithType = () => <Button type={typeOptions.Default as Type}>Label</Button>;

View File

@ -1,35 +0,0 @@
import React, { FC } from 'react';
export type Type = 'default' | 'action';
interface Props {
/**
* Click event `handler`
*
* Example function:
*
* ```
* () => {
* doThis();
* }
* ```
*
* @default null
*/
onClick?: () => void;
/**
* Button type yo
*/
type?: Type;
}
const Button: FC<Props> = ({ children, type = 'default', onClick }) => {
return (
<button type="button" onClick={onClick}>
{type}: {children}
</button>
);
};
export default Button;

View File

@ -1,37 +0,0 @@
import React, { FC, HTMLAttributes } from 'react';
const styles = {
border: '1px solid #eee',
borderRadius: 3,
backgroundColor: '#FFFFFF',
cursor: 'pointer',
fontSize: 15,
padding: '3px 10px',
margin: 10,
};
type ButtonProps = Pick<HTMLAttributes<HTMLButtonElement>, 'onClick'>;
export const Button: FC<ButtonProps> = ({ children, onClick }) => (
<button onClick={onClick} style={styles} type="button">
{children}
</button>
);
Button.displayName = 'Button';
Button.defaultProps = {
onClick: () => {},
};
interface WelcomeProps {
showApp: () => void;
}
export const Welcome: FC<WelcomeProps> = ({ showApp }) => (
<button type="button" onClick={showApp}>
Welcome
</button>
);
Welcome.displayName = 'Welcome';
Welcome.defaultProps = {
showApp: () => {},
};

View File

@ -1,11 +0,0 @@
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

View File

@ -1,6 +0,0 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
ReactDOM.render(<App />, document.getElementById('root'));

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.0 KiB

View File

@ -1 +0,0 @@
/// <reference types="react-scripts" />

View File

@ -1,11 +0,0 @@
import React from 'react';
import { Welcome } from '../components/react-demo';
export default {
title: 'Welcome',
component: Welcome,
};
export const ToStorybook = () => <Welcome showApp={() => {}} />;
ToStorybook.storyName = 'to Storybook';

View File

@ -1,17 +0,0 @@
import React from 'react';
import { Button } from './Button';
export default {
title: '1-Button',
component: Button,
};
export const Text = () => <Button>Hello Button</Button>;
export const Emoji = () => (
<Button>
<span role="img" aria-label="so cool">
😀 😎 👍 💯
</span>
</Button>
);

View File

@ -1,32 +0,0 @@
import React, { FC } from 'react';
interface ButtonProps {
/**
* Simple click handler
*/
onClick?: () => void;
/**
* Is primary?
*/
primary?: boolean;
/**
* default is false
*/
secondary?: boolean;
}
/**
* The world's most _basic_ button
*/
export const Button: FC<ButtonProps> = ({ children, onClick }) => (
<button onClick={onClick} type="button">
{children}
</button>
);
Button.defaultProps = {
primary: true,
secondary: false,
};

View File

@ -1,20 +0,0 @@
import { Meta } from '@storybook/addon-docs';
<Meta title="Classes Stripped" />
# Preview
<style>
{`
.a-custom-class {
border: 10px solid hotpink;
}
.a-custom-classname {
border: 10px solid blue;
}
`}
</style>
<div class="a-custom-class">
<div className="a-custom-classname">This box should have BOTH a pink and blue border</div>
</div>

View File

@ -1,16 +0,0 @@
/* eslint-disable react/no-unused-prop-types */
/* eslint-disable react/require-default-props */
import React from 'react';
import PropTypes from 'prop-types';
export const PropsSort = () => <div>PropsSort!</div>;
PropsSort.propTypes = {
foo: PropTypes.string.isRequired,
middleWithDefaultValue: PropTypes.string,
bar: PropTypes.string,
endWithDefaultValue: PropTypes.string,
};
PropsSort.defaultProps = {
middleWithDefaultValue: 'Middle!',
endWithDefaultValue: 'End!',
};

View File

@ -1,18 +0,0 @@
import { Meta, Story, Canvas, ArgsTable } from '@storybook/addon-docs';
import { Button } from './Button';
<Meta title="Test" />
Here's some _markdown_!
# Canvas
<Canvas>
<Story name="button">
<Button>hello</Button>
</Story>
</Canvas>
# ArgsTable
<ArgsTable of={Button} />

View File

@ -1,265 +0,0 @@
import { Meta } from '@storybook/addon-docs';
<Meta title="Anchors" />
<a href="#bottom">go to bottom</a>
## Hey
<code>Some code!!!</code>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque leo dolor, pharetra non arcu vel,
accumsan commodo ligula. Vestibulum ut nulla mauris. Mauris vehicula pharetra sem, ac semper quam
euismod eget. Fusce sit amet laoreet leo. Maecenas vitae mollis nibh. Morbi ullamcorper justo at
enim malesuada, non porta augue ullamcorper. Etiam varius ultrices nisi, eu pharetra lacus
sollicitudin eu. Suspendisse sit amet tincidunt dolor, a lobortis lectus.
</p>
<p>
Quisque venenatis placerat est, sed pulvinar dui cursus ut. Curabitur rutrum odio sit amet est
bibendum maximus. Nulla euismod finibus condimentum. Vestibulum finibus, felis nec malesuada
accumsan, urna velit convallis ligula, ut pharetra lacus lorem elementum nunc. Donec ac massa eget
massa auctor rhoncus at et nulla. Nam sollicitudin, mauris eget egestas pellentesque, leo eros
tincidunt felis, in luctus metus tortor sit amet tortor. Mauris ut velit vitae ipsum pharetra
consequat. Vivamus id magna quis orci congue fringilla. Vestibulum vitae mollis risus.
</p>
<p>
Phasellus eu mauris lacus. Fusce nec ante non ante condimentum ullamcorper. Phasellus condimentum
massa vitae diam dignissim volutpat. Aenean ut dignissim felis. Suspendisse vitae sollicitudin
est, vel dapibus elit. Nullam auctor dui et erat sagittis, quis imperdiet tellus consequat. Donec
eu auctor nulla. Pellentesque sed leo lectus. Quisque molestie, urna non gravida vestibulum, nulla
augue pellentesque neque, sed ultrices quam diam id metus.
</p>
<p>
Etiam nec suscipit nunc. Vestibulum in euismod neque, eu vehicula tellus. Praesent id suscipit
nunc. Pellentesque non orci egestas, bibendum magna et, commodo lorem. Phasellus et convallis
arcu, ac dapibus velit. Integer ac pellentesque nibh. Aenean erat magna, hendrerit bibendum
fringilla a, maximus eu mi. Curabitur pulvinar pulvinar pellentesque. Duis in dapibus enim.
</p>
<p>
Integer vitae convallis velit. Integer ut turpis risus. Nunc non dui vitae est aliquam tempus nec
ac nibh. Integer condimentum libero lorem, vitae ultrices neque commodo sit amet. Sed et lacinia
sapien. Sed mattis magna eu nunc varius vehicula. Ut id velit vitae nunc aliquet iaculis. Proin
enim turpis, ultricies vel vulputate in, pharetra at mauris. Duis non tincidunt augue.
</p>
## Ho
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque leo dolor, pharetra non arcu vel,
accumsan commodo ligula. Vestibulum ut nulla mauris. Mauris vehicula pharetra sem, ac semper quam
euismod eget. Fusce sit amet laoreet leo. Maecenas vitae mollis nibh. Morbi ullamcorper justo at
enim malesuada, non porta augue ullamcorper. Etiam varius ultrices nisi, eu pharetra lacus
sollicitudin eu. Suspendisse sit amet tincidunt dolor, a lobortis lectus.
</p>
<p>
Quisque venenatis placerat est, sed pulvinar dui cursus ut. Curabitur rutrum odio sit amet est
bibendum maximus. Nulla euismod finibus condimentum. Vestibulum finibus, felis nec malesuada
accumsan, urna velit convallis ligula, ut pharetra lacus lorem elementum nunc. Donec ac massa eget
massa auctor rhoncus at et nulla. Nam sollicitudin, mauris eget egestas pellentesque, leo eros
tincidunt felis, in luctus metus tortor sit amet tortor. Mauris ut velit vitae ipsum pharetra
consequat. Vivamus id magna quis orci congue fringilla. Vestibulum vitae mollis risus.
</p>
<p>
Phasellus eu mauris lacus. Fusce nec ante non ante condimentum ullamcorper. Phasellus condimentum
massa vitae diam dignissim volutpat. Aenean ut dignissim felis. Suspendisse vitae sollicitudin
est, vel dapibus elit. Nullam auctor dui et erat sagittis, quis imperdiet tellus consequat. Donec
eu auctor nulla. Pellentesque sed leo lectus. Quisque molestie, urna non gravida vestibulum, nulla
augue pellentesque neque, sed ultrices quam diam id metus.
</p>
<p>
Etiam nec suscipit nunc. Vestibulum in euismod neque, eu vehicula tellus. Praesent id suscipit
nunc. Pellentesque non orci egestas, bibendum magna et, commodo lorem. Phasellus et convallis
arcu, ac dapibus velit. Integer ac pellentesque nibh. Aenean erat magna, hendrerit bibendum
fringilla a, maximus eu mi. Curabitur pulvinar pulvinar pellentesque. Duis in dapibus enim.
</p>
<p>
Integer vitae convallis velit. Integer ut turpis risus. Nunc non dui vitae est aliquam tempus nec
ac nibh. Integer condimentum libero lorem, vitae ultrices neque commodo sit amet. Sed et lacinia
sapien. Sed mattis magna eu nunc varius vehicula. Ut id velit vitae nunc aliquet iaculis. Proin
enim turpis, ultricies vel vulputate in, pharetra at mauris. Duis non tincidunt augue.
</p>
## Hey
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque leo dolor, pharetra non arcu vel,
accumsan commodo ligula. Vestibulum ut nulla mauris. Mauris vehicula pharetra sem, ac semper quam
euismod eget. Fusce sit amet laoreet leo. Maecenas vitae mollis nibh. Morbi ullamcorper justo at
enim malesuada, non porta augue ullamcorper. Etiam varius ultrices nisi, eu pharetra lacus
sollicitudin eu. Suspendisse sit amet tincidunt dolor, a lobortis lectus.
</p>
<p>
Quisque venenatis placerat est, sed pulvinar dui cursus ut. Curabitur rutrum odio sit amet est
bibendum maximus. Nulla euismod finibus condimentum. Vestibulum finibus, felis nec malesuada
accumsan, urna velit convallis ligula, ut pharetra lacus lorem elementum nunc. Donec ac massa eget
massa auctor rhoncus at et nulla. Nam sollicitudin, mauris eget egestas pellentesque, leo eros
tincidunt felis, in luctus metus tortor sit amet tortor. Mauris ut velit vitae ipsum pharetra
consequat. Vivamus id magna quis orci congue fringilla. Vestibulum vitae mollis risus.
</p>
<p>
Phasellus eu mauris lacus. Fusce nec ante non ante condimentum ullamcorper. Phasellus condimentum
massa vitae diam dignissim volutpat. Aenean ut dignissim felis. Suspendisse vitae sollicitudin
est, vel dapibus elit. Nullam auctor dui et erat sagittis, quis imperdiet tellus consequat. Donec
eu auctor nulla. Pellentesque sed leo lectus. Quisque molestie, urna non gravida vestibulum, nulla
augue pellentesque neque, sed ultrices quam diam id metus.
</p>
<p>
Etiam nec suscipit nunc. Vestibulum in euismod neque, eu vehicula tellus. Praesent id suscipit
nunc. Pellentesque non orci egestas, bibendum magna et, commodo lorem. Phasellus et convallis
arcu, ac dapibus velit. Integer ac pellentesque nibh. Aenean erat magna, hendrerit bibendum
fringilla a, maximus eu mi. Curabitur pulvinar pulvinar pellentesque. Duis in dapibus enim.
</p>
<p>
Integer vitae convallis velit. Integer ut turpis risus. Nunc non dui vitae est aliquam tempus nec
ac nibh. Integer condimentum libero lorem, vitae ultrices neque commodo sit amet. Sed et lacinia
sapien. Sed mattis magna eu nunc varius vehicula. Ut id velit vitae nunc aliquet iaculis. Proin
enim turpis, ultricies vel vulputate in, pharetra at mauris. Duis non tincidunt augue.
</p>
## Ho
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque leo dolor, pharetra non arcu vel,
accumsan commodo ligula. Vestibulum ut nulla mauris. Mauris vehicula pharetra sem, ac semper quam
euismod eget. Fusce sit amet laoreet leo. Maecenas vitae mollis nibh. Morbi ullamcorper justo at
enim malesuada, non porta augue ullamcorper. Etiam varius ultrices nisi, eu pharetra lacus
sollicitudin eu. Suspendisse sit amet tincidunt dolor, a lobortis lectus.
</p>
<p>
Quisque venenatis placerat est, sed pulvinar dui cursus ut. Curabitur rutrum odio sit amet est
bibendum maximus. Nulla euismod finibus condimentum. Vestibulum finibus, felis nec malesuada
accumsan, urna velit convallis ligula, ut pharetra lacus lorem elementum nunc. Donec ac massa eget
massa auctor rhoncus at et nulla. Nam sollicitudin, mauris eget egestas pellentesque, leo eros
tincidunt felis, in luctus metus tortor sit amet tortor. Mauris ut velit vitae ipsum pharetra
consequat. Vivamus id magna quis orci congue fringilla. Vestibulum vitae mollis risus.
</p>
<p>
Phasellus eu mauris lacus. Fusce nec ante non ante condimentum ullamcorper. Phasellus condimentum
massa vitae diam dignissim volutpat. Aenean ut dignissim felis. Suspendisse vitae sollicitudin
est, vel dapibus elit. Nullam auctor dui et erat sagittis, quis imperdiet tellus consequat. Donec
eu auctor nulla. Pellentesque sed leo lectus. Quisque molestie, urna non gravida vestibulum, nulla
augue pellentesque neque, sed ultrices quam diam id metus.
</p>
<p>
Etiam nec suscipit nunc. Vestibulum in euismod neque, eu vehicula tellus. Praesent id suscipit
nunc. Pellentesque non orci egestas, bibendum magna et, commodo lorem. Phasellus et convallis
arcu, ac dapibus velit. Integer ac pellentesque nibh. Aenean erat magna, hendrerit bibendum
fringilla a, maximus eu mi. Curabitur pulvinar pulvinar pellentesque. Duis in dapibus enim.
</p>
<p>
Integer vitae convallis velit. Integer ut turpis risus. Nunc non dui vitae est aliquam tempus nec
ac nibh. Integer condimentum libero lorem, vitae ultrices neque commodo sit amet. Sed et lacinia
sapien. Sed mattis magna eu nunc varius vehicula. Ut id velit vitae nunc aliquet iaculis. Proin
enim turpis, ultricies vel vulputate in, pharetra at mauris. Duis non tincidunt augue.
</p>
## Hey
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque leo dolor, pharetra non arcu vel,
accumsan commodo ligula. Vestibulum ut nulla mauris. Mauris vehicula pharetra sem, ac semper quam
euismod eget. Fusce sit amet laoreet leo. Maecenas vitae mollis nibh. Morbi ullamcorper justo at
enim malesuada, non porta augue ullamcorper. Etiam varius ultrices nisi, eu pharetra lacus
sollicitudin eu. Suspendisse sit amet tincidunt dolor, a lobortis lectus.
</p>
<p>
Quisque venenatis placerat est, sed pulvinar dui cursus ut. Curabitur rutrum odio sit amet est
bibendum maximus. Nulla euismod finibus condimentum. Vestibulum finibus, felis nec malesuada
accumsan, urna velit convallis ligula, ut pharetra lacus lorem elementum nunc. Donec ac massa eget
massa auctor rhoncus at et nulla. Nam sollicitudin, mauris eget egestas pellentesque, leo eros
tincidunt felis, in luctus metus tortor sit amet tortor. Mauris ut velit vitae ipsum pharetra
consequat. Vivamus id magna quis orci congue fringilla. Vestibulum vitae mollis risus.
</p>
<p>
Phasellus eu mauris lacus. Fusce nec ante non ante condimentum ullamcorper. Phasellus condimentum
massa vitae diam dignissim volutpat. Aenean ut dignissim felis. Suspendisse vitae sollicitudin
est, vel dapibus elit. Nullam auctor dui et erat sagittis, quis imperdiet tellus consequat. Donec
eu auctor nulla. Pellentesque sed leo lectus. Quisque molestie, urna non gravida vestibulum, nulla
augue pellentesque neque, sed ultrices quam diam id metus.
</p>
<p>
Etiam nec suscipit nunc. Vestibulum in euismod neque, eu vehicula tellus. Praesent id suscipit
nunc. Pellentesque non orci egestas, bibendum magna et, commodo lorem. Phasellus et convallis
arcu, ac dapibus velit. Integer ac pellentesque nibh. Aenean erat magna, hendrerit bibendum
fringilla a, maximus eu mi. Curabitur pulvinar pulvinar pellentesque. Duis in dapibus enim.
</p>
<p>
Integer vitae convallis velit. Integer ut turpis risus. Nunc non dui vitae est aliquam tempus nec
ac nibh. Integer condimentum libero lorem, vitae ultrices neque commodo sit amet. Sed et lacinia
sapien. Sed mattis magna eu nunc varius vehicula. Ut id velit vitae nunc aliquet iaculis. Proin
enim turpis, ultricies vel vulputate in, pharetra at mauris. Duis non tincidunt augue.
</p>
## Ho
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque leo dolor, pharetra non arcu vel,
accumsan commodo ligula. Vestibulum ut nulla mauris. Mauris vehicula pharetra sem, ac semper quam
euismod eget. Fusce sit amet laoreet leo. Maecenas vitae mollis nibh. Morbi ullamcorper justo at
enim malesuada, non porta augue ullamcorper. Etiam varius ultrices nisi, eu pharetra lacus
sollicitudin eu. Suspendisse sit amet tincidunt dolor, a lobortis lectus.
</p>
<p>
Quisque venenatis placerat est, sed pulvinar dui cursus ut. Curabitur rutrum odio sit amet est
bibendum maximus. Nulla euismod finibus condimentum. Vestibulum finibus, felis nec malesuada
accumsan, urna velit convallis ligula, ut pharetra lacus lorem elementum nunc. Donec ac massa eget
massa auctor rhoncus at et nulla. Nam sollicitudin, mauris eget egestas pellentesque, leo eros
tincidunt felis, in luctus metus tortor sit amet tortor. Mauris ut velit vitae ipsum pharetra
consequat. Vivamus id magna quis orci congue fringilla. Vestibulum vitae mollis risus.
</p>
<p>
Phasellus eu mauris lacus. Fusce nec ante non ante condimentum ullamcorper. Phasellus condimentum
massa vitae diam dignissim volutpat. Aenean ut dignissim felis. Suspendisse vitae sollicitudin
est, vel dapibus elit. Nullam auctor dui et erat sagittis, quis imperdiet tellus consequat. Donec
eu auctor nulla. Pellentesque sed leo lectus. Quisque molestie, urna non gravida vestibulum, nulla
augue pellentesque neque, sed ultrices quam diam id metus.
</p>
<p>
Etiam nec suscipit nunc. Vestibulum in euismod neque, eu vehicula tellus. Praesent id suscipit
nunc. Pellentesque non orci egestas, bibendum magna et, commodo lorem. Phasellus et convallis
arcu, ac dapibus velit. Integer ac pellentesque nibh. Aenean erat magna, hendrerit bibendum
fringilla a, maximus eu mi. Curabitur pulvinar pulvinar pellentesque. Duis in dapibus enim.
</p>
<p>
Integer vitae convallis velit. Integer ut turpis risus. Nunc non dui vitae est aliquam tempus nec
ac nibh. Integer condimentum libero lorem, vitae ultrices neque commodo sit amet. Sed et lacinia
sapien. Sed mattis magna eu nunc varius vehicula. Ut id velit vitae nunc aliquet iaculis. Proin
enim turpis, ultricies vel vulputate in, pharetra at mauris. Duis non tincidunt augue.
</p>
## Bottom
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque leo dolor, pharetra non arcu vel,
accumsan commodo ligula. Vestibulum ut nulla mauris. Mauris vehicula pharetra sem, ac semper quam
euismod eget. Fusce sit amet laoreet leo. Maecenas vitae mollis nibh. Morbi ullamcorper justo at
enim malesuada, non porta augue ullamcorper. Etiam varius ultrices nisi, eu pharetra lacus
sollicitudin eu. Suspendisse sit amet tincidunt dolor, a lobortis lectus.
</p>
<p>
Quisque venenatis placerat est, sed pulvinar dui cursus ut. Curabitur rutrum odio sit amet est
bibendum maximus. Nulla euismod finibus condimentum. Vestibulum finibus, felis nec malesuada
accumsan, urna velit convallis ligula, ut pharetra lacus lorem elementum nunc. Donec ac massa eget
massa auctor rhoncus at et nulla. Nam sollicitudin, mauris eget egestas pellentesque, leo eros
tincidunt felis, in luctus metus tortor sit amet tortor. Mauris ut velit vitae ipsum pharetra
consequat. Vivamus id magna quis orci congue fringilla. Vestibulum vitae mollis risus.
</p>
<p>
Phasellus eu mauris lacus. Fusce nec ante non ante condimentum ullamcorper. Phasellus condimentum
massa vitae diam dignissim volutpat. Aenean ut dignissim felis. Suspendisse vitae sollicitudin
est, vel dapibus elit. Nullam auctor dui et erat sagittis, quis imperdiet tellus consequat. Donec
eu auctor nulla. Pellentesque sed leo lectus. Quisque molestie, urna non gravida vestibulum, nulla
augue pellentesque neque, sed ultrices quam diam id metus.
</p>
<p>
Etiam nec suscipit nunc. Vestibulum in euismod neque, eu vehicula tellus. Praesent id suscipit
nunc. Pellentesque non orci egestas, bibendum magna et, commodo lorem. Phasellus et convallis
arcu, ac dapibus velit. Integer ac pellentesque nibh. Aenean erat magna, hendrerit bibendum
fringilla a, maximus eu mi. Curabitur pulvinar pulvinar pellentesque. Duis in dapibus enim.
</p>
<p>
Integer vitae convallis velit. Integer ut turpis risus. Nunc non dui vitae est aliquam tempus nec
ac nibh. Integer condimentum libero lorem, vitae ultrices neque commodo sit amet. Sed et lacinia
sapien. Sed mattis magna eu nunc varius vehicula. Ut id velit vitae nunc aliquet iaculis. Proin
enim turpis, ultricies vel vulputate in, pharetra at mauris. Duis non tincidunt augue.
</p>

View File

@ -1,78 +0,0 @@
/* eslint-disable react/button-has-type */
/* eslint-disable react/prefer-stateless-function */
/* eslint-disable react/prop-types */
import React, { Component } from 'react';
import PropTypes from 'prop-types';
/**
* Button functional component
*/
export const ButtonFn = ({ onClick, children }) => <button onClick={onClick}>{children}</button>;
ButtonFn.propTypes = {
/**
* onClick description
*/
onClick: PropTypes.func,
};
ButtonFn.defaultProps = {
onClick: null,
};
/**
* Button class React.Component
*/
export class ButtonReactComponent extends React.Component {
render() {
const { onClick, children } = this.props;
return <button onClick={onClick}>{children}</button>;
}
}
ButtonReactComponent.propTypes = {
/**
* onClick description
*/
onClick: PropTypes.func,
};
ButtonReactComponent.defaultProps = {
onClick: null,
};
/**
* Button class Component
*/
export class ButtonComponent extends Component {
render() {
const { onClick, children } = this.props;
return <button onClick={onClick}>{children}</button>;
}
}
ButtonComponent.propTypes = {
/**
* onClick description
*/
onClick: PropTypes.func,
};
ButtonComponent.defaultProps = {
onClick: null,
};
/**
* Button class static props
*/
export class ButtonStaticProps extends Component {
static propTypes = {
/**
* onClick description
*/
onClick: PropTypes.func,
};
static defaultProps = {
onClick: null,
};
render() {
const { onClick, children } = this.props;
return <button onClick={onClick}>{children}</button>;
}
}

View File

@ -1,39 +0,0 @@
/* eslint-disable react/button-has-type */
import React, { FC, SyntheticEvent } from 'react';
interface ButtonProps {
/**
* onClick description
*/
onClick?: (e: SyntheticEvent) => void;
}
/**
* Button functional component (React.FC)
*/
export const ButtonReactFC: React.FC<ButtonProps> = ({ onClick, children }) => (
<button onClick={onClick}>{children}</button>
);
ButtonReactFC.defaultProps = {
onClick: null,
};
/**
* Button functional component (FC)
*/
export const ButtonFC: FC<ButtonProps> = ({ onClick, children }) => (
<button onClick={onClick}>{children}</button>
);
ButtonFC.defaultProps = {
onClick: null,
};
/**
* Button functional component (FunctionComponent)
*/
export const ButtonFunctionComponent: FC<ButtonProps> = ({ onClick, children }) => (
<button onClick={onClick}>{children}</button>
);
ButtonFunctionComponent.defaultProps = {
onClick: null,
};

View File

@ -1,29 +0,0 @@
import { Meta, ArgsTable, Description } from '@storybook/addon-docs';
import * as DocgenJS from './DocgenJS';
import * as DocgenTS from './DocgenTS';
<Meta title="Docgen/Props" />
export const DescriptionProps = ({ of }) => (
<>
<h2>{of.displayName}</h2>
<Description of={of} />
<ArgsTable of={of} />
</>
);
# React Docgen Test Cases
<div>
{Object.entries(DocgenJS).map(([key, val]) => (
<DescriptionProps key={key} of={val} />
))}
</div>
# React Typescript Docgen Test Cases
<div>
{Object.entries(DocgenTS).map(([key, val]) => (
<DescriptionProps key={key} of={val} />
))}
</div>

View File

@ -1,472 +0,0 @@
/* eslint-disable react/no-unused-prop-types */
/* eslint-disable react/require-default-props */
/* eslint-disable react/prop-types */
import React from 'react';
import PropTypes from 'prop-types';
export const ButtonTooManyProps = ({ onClick, children }) => (
<button type="button" onClick={onClick}>
{children}
</button>
);
ButtonTooManyProps.propTypes = {
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick1: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick2: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick3: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick4: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick5: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick6: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick7: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick8: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick9: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick10: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick11: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick12: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick13: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick14: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick15: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick16: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick17: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick18: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick19: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick20: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick21: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick22: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick23: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick24: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick25: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick26: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick27: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick28: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick29: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick30: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick31: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick32: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick33: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick34: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick35: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick36: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick37: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick38: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick39: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick40: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick41: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick42: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick43: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick44: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick45: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick46: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick47: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick48: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick49: PropTypes.func,
/**
* onClick description
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {SyntheticEvent} event1 - React's original SyntheticEvent.
* @param {SyntheticEvent} event2 - React's original SyntheticEvent.
* @param {SyntheticEvent} event3 - React's original SyntheticEvent.
* @returns {void}
*/
onClick50: PropTypes.func,
};

View File

@ -1,10 +0,0 @@
import { Meta, ArgsTable } from '@storybook/addon-docs';
import { ButtonTooManyProps } from './jsdoc-perfo';
<Meta title="Docgen/jsdoc-perfo" />
## Render 150 props with JSDoc tags
<ArgsTable of={ButtonTooManyProps} />
<ArgsTable of={ButtonTooManyProps} />
<ArgsTable of={ButtonTooManyProps} />

View File

@ -1,9 +0,0 @@
import { Meta, ArgsTable } from '@storybook/addon-docs';
import { JsDocProps, FailingJsDocProps } from './jsdoc';
import { TypeScriptProps } from './jsdoc-ts';
<Meta title="Docgen/jsdoc" />
<ArgsTable of={JsDocProps} />
<ArgsTable of={TypeScriptProps} />
<ArgsTable of={FailingJsDocProps} />

View File

@ -1,15 +0,0 @@
import { Meta, ArgsTable } from '@storybook/addon-docs';
import { PropTypesProps } from './prop-types';
import { TypeScriptProps, TypeScriptHtmlComponent } from './ts-types';
<Meta title="Docgen/types" />
## Prop Types
<ArgsTable of={PropTypesProps} />
## TypeScript
<ArgsTable of={TypeScriptProps} />
<ArgsTable of={TypeScriptHtmlComponent} />

View File

@ -1,10 +0,0 @@
import { PropsSort } from './PropsSort';
import { ArgsTable, Meta } from '@storybook/addon-docs';
import { SortType } from '@storybook/components';
<Meta title="PropsSort" />
<ArgsTable of={PropsSort} />
<ArgsTable of={PropsSort} exclude={['foo']} />
<ArgsTable of={PropsSort} sort="alpha" />
<ArgsTable of={PropsSort} sort="requiredFirst" />

View File

@ -1,18 +0,0 @@
{
"compilerOptions": {
"baseUrl": ".",
"incremental": false,
"noImplicitAny": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "react",
"target": "ES2020",
"module": "CommonJS",
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"types": ["jest", "node"],
"lib": ["es2017", "dom"]
},
"include": ["src"]
}

View File

@ -27,7 +27,6 @@ module.exports = {
projects: [
'<rootDir>',
// '<rootDir>/app/angular',
// '<rootDir>/examples/cra-ts-kitchen-sink',
// '<rootDir>/examples/html-kitchen-sink',
// '<rootDir>/examples/svelte-kitchen-sink',
// '<rootDir>/examples/vue-kitchen-sink',

View File

@ -27,6 +27,7 @@
"@storybook/preview-web": "7.0.0-alpha.34",
"@storybook/source-loader": "7.0.0-alpha.34",
"@vitejs/plugin-react": "^2.0.0",
"browser-assert": "^1.2.1",
"es-module-lexer": "^0.9.3",
"glob": "^7.2.0",
"glob-promise": "^4.2.0",

View File

@ -57,7 +57,12 @@ export async function commonConfig(
cacheDir: 'node_modules/.vite-storybook',
root: path.resolve(options.configDir, '..'),
plugins: await pluginConfig(options),
resolve: { preserveSymlinks: isPreservingSymlinks() },
resolve: {
preserveSymlinks: isPreservingSymlinks(),
alias: {
assert: require.resolve('browser-assert'),
},
},
// If an envPrefix is specified in the vite config, add STORYBOOK_ to it,
// otherwise, add VITE_ and STORYBOOK_ so that vite doesn't lose its default.
envPrefix: userConfig.envPrefix ? 'STORYBOOK_' : ['VITE_', 'STORYBOOK_'],

View File

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

View File

@ -1,33 +0,0 @@
// 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 /*#__PURE__*/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

@ -1,16 +0,0 @@
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

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

View File

@ -1 +0,0 @@
module.exports = { imported: 'imported-value' };

View File

@ -0,0 +1,98 @@
import 'jest-specific-snapshot';
import path from 'path';
import fs from 'fs';
import requireFromString from 'require-from-string';
import { transformFileSync, transformSync } from '@babel/core';
import { inferControls } from '@storybook/store';
import type { AnyFramework } from '@storybook/csf';
import { normalizeNewlines } from '@storybook/docs-tools';
import type { StoryContext } from '../types';
import { extractProps } from './extractProps';
import { extractArgTypes } from './extractArgTypes';
// File hierarchy:
// __testfixtures__ / some-test-case / input.*
const inputRegExp = /^input\..*$/;
const transformToModule = (inputCode: string) => {
const options = {
presets: [
[
'@babel/preset-env',
{
targets: {
esmodules: true,
},
},
],
],
};
const { code } = transformSync(inputCode, options) || {};
return normalizeNewlines(code || '');
};
const annotateWithDocgen = (inputPath: string) => {
const options = {
presets: ['@babel/typescript', '@babel/react'],
plugins: ['babel-plugin-react-docgen', '@babel/plugin-proposal-class-properties'],
babelrc: false,
};
const { code } = transformFileSync(inputPath, options) || {};
return normalizeNewlines(code || '');
};
// We need to skip a set of test cases that use ESM code, as the `requireFromString`
// code below does not support it. These stories will be tested via Chromatic in the
// sandboxes. Hopefully we can figure out a better testing strategy in the future.
const skippedTests = [
'js-class-component',
'js-function-component',
'js-function-component-inline-defaults',
'js-function-component-inline-defaults-no-propTypes',
'ts-function-component',
'ts-function-component-inline-defaults',
'js-proptypes',
];
describe('react component properties', () => {
// Fixture files are in template/stories
const fixturesDir = path.resolve(__dirname, '../../template/stories/docgen-components');
fs.readdirSync(fixturesDir, { withFileTypes: true }).forEach((testEntry) => {
if (testEntry.isDirectory()) {
const testDir = path.join(fixturesDir, testEntry.name);
const testFile = fs.readdirSync(testDir).find((fileName) => inputRegExp.test(fileName));
if (testFile) {
if (skippedTests.includes(testEntry.name)) {
it.skip(testEntry.name, () => {});
} else {
it(testEntry.name, () => {
const inputPath = path.join(testDir, testFile);
// snapshot the output of babel-plugin-react-docgen
const docgenPretty = annotateWithDocgen(inputPath);
expect(docgenPretty).toMatchSpecificSnapshot(path.join(testDir, 'docgen.snapshot'));
// transform into an uglier format that's works with require-from-string
const docgenModule = transformToModule(docgenPretty);
// snapshot the output of component-properties/react
const { component } = requireFromString(docgenModule, inputPath);
const properties = extractProps(component);
expect(properties).toMatchSpecificSnapshot(path.join(testDir, 'properties.snapshot'));
// snapshot the output of `extractArgTypes`
const argTypes = extractArgTypes(component);
const parameters = { __isArgsStory: true };
const rows = inferControls({
argTypes,
parameters,
} as unknown as StoryContext<AnyFramework>);
expect(rows).toMatchSpecificSnapshot(path.join(testDir, 'argTypes.snapshot'));
});
}
}
}
});
});

View File

@ -1,97 +0,0 @@
import React, { useState } from 'react';
import mapValues from 'lodash/mapValues';
import { PureArgsTable as ArgsTable } from '@storybook/blocks';
import type { Args } from '@storybook/csf';
import { inferControls } from '@storybook/store';
import { storiesOf } from '../public-api';
import type { StoryContext } from '../types';
import { extractArgTypes } from './extractArgTypes';
// FIXME
type Component = any;
const argsTableProps = (component: Component) => {
const argTypes = extractArgTypes(component);
const parameters = { __isArgsStory: true };
const rows = inferControls({ argTypes, parameters } as unknown as StoryContext<any>);
return { rows };
};
const ArgsStory = ({ component }: any) => {
const { rows } = argsTableProps(component);
const initialArgs = mapValues(rows, (argType) => argType.defaultValue) as Args;
const [args, setArgs] = useState(initialArgs);
return (
<>
<p>
<b>NOTE:</b> these stories are to help visualise the snapshot tests in{' '}
<code>./react-properties.test.js</code>.
</p>
<ArgsTable rows={rows} args={args} updateArgs={(val) => setArgs({ ...args, ...val })} />
<table>
<thead>
<tr>
<th>arg name</th>
<th>argType</th>
</tr>
</thead>
<tbody>
{Object.entries(args).map(([key, val]) => (
<tr key={key}>
<td>
<code>{key}</code>
</td>
<td>
<pre>{JSON.stringify(rows[key])}</pre>
</td>
</tr>
))}
</tbody>
</table>
</>
);
};
const issuesFixtures = [
'js-class-component',
'js-function-component',
'js-function-component-inline-defaults',
'js-function-component-inline-defaults-no-propTypes',
'ts-function-component',
'ts-function-component-inline-defaults',
'9399-js-proptypes-shape',
'8663-js-styled-components',
'9626-js-default-values',
'9668-js-proptypes-no-jsdoc',
'8143-ts-react-fc-generics',
'8143-ts-imported-types',
'8279-js-styled-docgen',
'8140-js-prop-types-oneof',
'9023-js-hoc',
'8740-ts-multi-props',
'9556-ts-react-default-exports',
'9592-ts-styled-props',
'9591-ts-import-types',
'9721-ts-deprecated-jsdoc',
'9827-ts-default-values',
'9586-js-react-memo',
'9575-ts-camel-case',
'9493-ts-display-name',
'8894-9511-ts-forward-ref',
'9465-ts-type-props',
'8428-js-static-prop-types',
'9764-ts-extend-props',
'9922-ts-component-props',
];
const issuesStories = storiesOf('ArgTypes/Issues', module);
issuesFixtures.forEach((fixture) => {
// eslint-disable-next-line import/no-dynamic-require, global-require
const { component } = require(`./__testfixtures__/${fixture}/input`);
issuesStories.add(fixture, () => <ArgsStory component={component} />, {
chromatic: { disable: true },
});
});

View File

@ -1,82 +0,0 @@
import 'jest-specific-snapshot';
import path from 'path';
import fs from 'fs';
import requireFromString from 'require-from-string';
import { transformFileSync, transformSync } from '@babel/core';
import { inferControls } from '@storybook/store';
import type { AnyFramework } from '@storybook/csf';
import { normalizeNewlines } from '@storybook/docs-tools';
import type { StoryContext } from '../types';
import { extractProps } from './extractProps';
import { extractArgTypes } from './extractArgTypes';
// jest.mock('../imported', () => () => ({ imported: 'imported-value' }), { virtual: true });
// File hierarchy:
// __testfixtures__ / some-test-case / input.*
const inputRegExp = /^input\..*$/;
const transformToModule = (inputCode: string) => {
const options = {
presets: [
[
'@babel/preset-env',
{
targets: {
esmodules: true,
},
},
],
],
};
const { code } = transformSync(inputCode, options) || {};
return normalizeNewlines(code || '');
};
const annotateWithDocgen = (inputPath: string) => {
const options = {
presets: ['@babel/typescript', '@babel/react'],
plugins: ['babel-plugin-react-docgen', '@babel/plugin-proposal-class-properties'],
babelrc: false,
};
const { code } = transformFileSync(inputPath, options) || {};
return normalizeNewlines(code || '');
};
describe('react component properties', () => {
const fixturesDir = path.join(__dirname, '__testfixtures__');
fs.readdirSync(fixturesDir, { withFileTypes: true }).forEach((testEntry) => {
if (testEntry.isDirectory()) {
const testDir = path.join(fixturesDir, testEntry.name);
const testFile = fs.readdirSync(testDir).find((fileName) => inputRegExp.test(fileName));
if (testFile) {
it(testEntry.name, () => {
const inputPath = path.join(testDir, testFile);
// snapshot the output of babel-plugin-react-docgen
const docgenPretty = annotateWithDocgen(inputPath);
expect(docgenPretty).toMatchSpecificSnapshot(path.join(testDir, 'docgen.snapshot'));
// transform into an uglier format that's works with require-from-string
const docgenModule = transformToModule(docgenPretty);
// snapshot the output of component-properties/react
const { component } = requireFromString(docgenModule, inputPath);
const properties = extractProps(component);
expect(properties).toMatchSpecificSnapshot(path.join(testDir, 'properties.snapshot'));
// snapshot the output of `extractArgTypes`
const argTypes = extractArgTypes(component);
const parameters = { __isArgsStory: true };
const rows = inferControls({
argTypes,
parameters,
} as unknown as StoryContext<AnyFramework>);
expect(rows).toMatchSpecificSnapshot(path.join(testDir, 'argTypes.snapshot'));
});
}
}
});
});

View File

@ -1,7 +1,10 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`react component properties 8140-js-prop-types-oneof 1`] = `
"import React from 'react';
"/* eslint-disable react/require-default-props */
/* eslint-disable react/no-unused-prop-types */
import React from 'react';
import PropTypes from 'prop-types';
const Alert = props => /*#__PURE__*/React.createElement(React.Fragment, null, JSON.stringify(props));

View File

@ -1,3 +1,5 @@
/* eslint-disable react/require-default-props */
/* eslint-disable react/no-unused-prop-types */
import React from 'react';
import PropTypes from 'prop-types';

View File

@ -1,7 +1,8 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`react component properties 8279-js-styled-docgen 1`] = `
"import styled from 'styled-components';
"// eslint-disable-next-line import/no-extraneous-dependencies
import styled from 'styled-components';
import PropTypes from 'prop-types';
/**
* Use \`A\` to provide a regular link

View File

@ -1,3 +1,4 @@
// eslint-disable-next-line import/no-extraneous-dependencies
import styled from 'styled-components';
import PropTypes from 'prop-types';

View File

@ -3,6 +3,9 @@
exports[`react component properties 8428-js-static-prop-types 1`] = `
"function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
/* eslint-disable react/no-unused-prop-types */
/* eslint-disable react/require-default-props */
import React from 'react';
import PropTypes from 'prop-types'; // eslint-disable-next-line react/prefer-stateless-function

View File

@ -1,3 +1,5 @@
/* eslint-disable react/no-unused-prop-types */
/* eslint-disable react/require-default-props */
import React from 'react';
import PropTypes from 'prop-types';

View File

@ -1,7 +1,10 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`react component properties 8663-js-styled-components 1`] = `
"import React from 'react';
"/* eslint-disable import/no-extraneous-dependencies */
/* eslint-disable react/require-default-props */
import React from 'react';
import PropTypes from 'prop-types';
import styled from 'styled-components';
const Box = styled.div\`

View File

@ -1,3 +1,5 @@
/* eslint-disable import/no-extraneous-dependencies */
/* eslint-disable react/require-default-props */
import React from 'react';
import PropTypes from 'prop-types';
import styled from 'styled-components';

View File

@ -2,6 +2,7 @@ import React from 'react';
export interface ElemAProps {
size?: 'a' | 'b' | 'c' | 'd';
children: React.ReactNode;
}
export const Header: React.FC<ElemAProps> = ({ size = 'a', children }) => (
@ -10,6 +11,7 @@ export const Header: React.FC<ElemAProps> = ({ size = 'a', children }) => (
export interface ElemBProps {
size?: 'sm' | 'md' | 'lg';
children: React.ReactNode;
}
export const Paragraph: React.FC<ElemBProps> = ({ size, children }) => (

View File

@ -9,6 +9,10 @@ interface ButtonProps {
* Disables the button.
*/
disabled?: boolean;
/**
* Content of the button.
*/
children: React.ReactNode;
}
const Button = forwardRef<HTMLButtonElement, ButtonProps>(

View File

@ -1,9 +1,15 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`react component properties 9023-js-hoc 1`] = `
"/* eslint-disable react/prefer-stateless-function */
"/* eslint-disable react/require-default-props */
/* eslint-disable react/forbid-prop-types */
/* eslint-disable react/no-unused-prop-types */
/* eslint-disable react/prefer-stateless-function */
import React from 'react';
import PropTypes from 'prop-types';
import PropTypes from 'prop-types'; // deepscan-disable-next-line
const withStyles = themeFn => Comp => Comp;

View File

@ -1,7 +1,11 @@
/* eslint-disable react/require-default-props */
/* eslint-disable react/forbid-prop-types */
/* eslint-disable react/no-unused-prop-types */
/* eslint-disable react/prefer-stateless-function */
import React from 'react';
import PropTypes from 'prop-types';
// deepscan-disable-next-line
const withStyles = (themeFn) => (Comp) => Comp;
class Alert extends React.Component {

Some files were not shown because too many files have changed in this diff Show More