feat: remove storybook

This commit is contained in:
Shivam Mishra
2024-08-27 14:09:15 +05:30
parent fe5670832a
commit 01e09fbf6a
65 changed files with 0 additions and 3011 deletions
@@ -1,50 +0,0 @@
import { action } from '@storybook/addon-actions';
import wootInput from './Input';
export default {
title: 'Components/Form/Input',
component: wootInput,
argTypes: {
label: {
defaultValue: 'Email Address',
control: {
type: 'text',
},
},
type: {
defaultValue: 'email',
control: {
type: 'text',
},
},
placeholder: {
defaultValue: 'Please enter your email address',
control: {
type: 'text',
},
},
value: {
defaultValue: 'John12@ync.in',
control: {
type: 'text ,number',
},
},
error: {
defaultValue: '',
control: {
type: 'text',
},
},
},
};
const Template = (args, { argTypes }) => ({
props: Object.keys(argTypes),
components: { wootInput },
template: '<woot-input v-bind="$props" @input="onClick"></woot-input>',
});
export const Input = Template.bind({});
Input.args = {
onClick: action('Added'),
};
@@ -1,51 +0,0 @@
import { action } from '@storybook/addon-actions';
import wootTextArea from './TextArea';
export default {
title: 'Components/Form/Text Area',
component: wootTextArea,
argTypes: {
label: {
defaultValue: 'Message',
control: {
type: 'text',
},
},
type: {
defaultValue: '',
control: {
type: 'text',
},
},
placeholder: {
defaultValue: 'Please enter your message',
control: {
type: 'text',
},
},
value: {
defaultValue: 'Lorem ipsum is a placeholder text commonly used',
control: {
type: 'text ,number',
},
},
error: {
defaultValue: '',
control: {
type: 'text',
},
},
},
};
const Template = (args, { argTypes }) => ({
props: Object.keys(argTypes),
components: { wootTextArea },
template:
'<woot-text-area v-bind="$props" @input="onClick"></woot-text-area>',
});
export const TextArea = Template.bind({});
TextArea.args = {
onClick: action('Added'),
};
@@ -1,30 +0,0 @@
import { action } from '@storybook/addon-actions';
import ArticleHero from '../ArticleHero.vue'; // adjust this path to match your file's location
export default {
title: 'Components/Widgets/ArticleHero',
component: ArticleHero,
argTypes: {
articles: { control: 'array', description: 'Array of articles' },
},
};
const Template = (args, { argTypes }) => ({
props: Object.keys(argTypes),
components: { ArticleHero },
template:
'<article-hero v-bind="$props" @view-all-articles="viewAllArticles" />',
methods: {
viewAllArticles: action('view-all-articles'),
},
});
export const Default = Template.bind({});
Default.args = {
articles: [
{ title: 'Article 1', content: 'This is article 1.' },
{ title: 'Article 2', content: 'This is article 2.' },
{ title: 'Article 3', content: 'This is article 3.' },
{ title: 'Article 4', content: 'This is article 4.' },
],
};