Remove unused react-ts-webpack4

This commit is contained in:
Michael Shilman 2022-04-08 20:50:15 +08:00
parent ecaf60afb7
commit cce214d11f
8 changed files with 0 additions and 121 deletions

View File

@ -1,3 +0,0 @@
# Storybook TS example
This Storybook demonstrates support for TypeScript in Storybook without additional configuration.

View File

@ -1,32 +0,0 @@
import type { StorybookConfig } from '@storybook/react/types';
const config: StorybookConfig = {
stories: ['./src/*.stories.*'],
logLevel: 'debug',
addons: [
'@storybook/addon-essentials',
'@storybook/addon-controls',
'@storybook/addon-storysource',
{
name: '@storybook/addon-docs',
options: {
sourceLoaderOptions: {
parser: 'typescript',
injectStoryParameters: false,
},
},
},
],
core: {
builder: 'webpack4',
},
typescript: {
check: true,
checkOptions: {},
reactDocgenTypescriptOptions: {
propFilter: (prop) => ['label', 'disabled'].includes(prop.name),
},
},
};
module.exports = config;

View File

@ -1,23 +0,0 @@
{
"name": "@storybook/example-react-ts-webpack4",
"version": "6.5.0-alpha.57",
"private": true,
"scripts": {
"build-storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true sb build -c ./",
"debug": "cross-env NODE_OPTIONS=--inspect-brk STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true yarn sb start -p 9011 -c ./",
"storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true yarn sb start -p 9011 -c ./ --no-manager-cache"
},
"dependencies": {
"@storybook/addon-controls": "6.5.0-alpha.57",
"@storybook/addon-essentials": "6.5.0-alpha.57",
"@storybook/builder-webpack4": "6.5.0-alpha.57",
"@storybook/react": "6.5.0-alpha.57",
"@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",
"typescript": "^3.9.7",
"webpack": "4"
}
}

View File

@ -1,9 +0,0 @@
import React from 'react';
import { Meta } from '@storybook/react';
import { Button } from './button';
export default { component: Button, title: 'Examples / Button' } as Meta;
export const WithArgs = (args: any) => <Button {...args} />;
WithArgs.args = { label: 'With args' };
export const Basic = () => <Button label="Click me" />;

View File

@ -1,14 +0,0 @@
import React, { ButtonHTMLAttributes } from 'react';
export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
/**
* A label to show on the button
*/
label: string;
}
export const Button = ({ label = 'Hello', ...props }: ButtonProps) => (
<button type="button" {...props}>
{label}
</button>
);

View File

@ -1,19 +0,0 @@
import React from 'react';
import PropTypes from 'prop-types';
export const EmojiButton = ({ label, ...props }) => (
<button type="button" {...props}>
{label}
</button>
);
EmojiButton.propTypes = {
/**
* A label to show on the button
*/
label: PropTypes.string,
};
EmojiButton.defaultProps = {
label: 'Hello',
};

View File

@ -1,8 +0,0 @@
import React from 'react';
import { EmojiButton } from './emoji-button';
export default { component: EmojiButton, title: 'Examples / Emoji Button' };
export const WithArgs = (args) => <EmojiButton {...args} />;
WithArgs.args = { label: 'With args' };
export const Basic = () => <EmojiButton label="Click me" />;

View File

@ -1,13 +0,0 @@
{
"compilerOptions": {
"baseUrl": ".",
"esModuleInterop": true,
"jsx": "preserve",
"skipLibCheck": true,
"strict": true
},
"include": [
"src/*",
"main.ts"
]
}