autotitle controls

This commit is contained in:
Jeppe Reinhold 2022-10-29 00:20:18 +02:00
parent d9b67ae7a8
commit d66a414ceb
8 changed files with 0 additions and 8 deletions

View File

@ -4,7 +4,6 @@ import type { Meta, StoryObj } from '@storybook/react';
import { BooleanControl } from './Boolean';
const meta = {
title: 'Controls/Boolean',
component: BooleanControl,
tags: ['docsPage'],
parameters: { controls: { include: ['value'] } },

View File

@ -4,7 +4,6 @@ import { useArgs } from '@storybook/addons';
import { ColorControl } from './Color';
export default {
title: 'Controls/Color',
component: ColorControl,
parameters: { controls: { include: ['value', 'startOpen'] } },
tags: ['docsPage'],

View File

@ -4,7 +4,6 @@ import { useArgs } from '@storybook/addons';
import { DateControl } from './Date';
export default {
title: 'Controls/Date',
component: DateControl,
// not using component here because we want to define argTypes ourselves
tags: ['docsPage'],

View File

@ -4,7 +4,6 @@ import { useArgs } from '@storybook/addons';
import { FilesControl } from './Files';
export default {
title: 'Controls/Files',
component: FilesControl,
tags: ['docsPage'],
parameters: { controls: { include: ['value', 'accept'] } },

View File

@ -4,7 +4,6 @@ import { useArgs } from '@storybook/addons';
import { NumberControl } from './Number';
export default {
title: 'Controls/Number',
component: NumberControl,
tags: ['docsPage'],
parameters: { controls: { include: ['value', 'min', 'max', 'step'] } },

View File

@ -4,7 +4,6 @@ import { useArgs } from '@storybook/addons';
import { ObjectControl } from './Object';
export default {
title: 'Controls/Object',
component: ObjectControl,
tags: ['docsPage'],
parameters: { controls: { include: ['value'] } },

View File

@ -4,7 +4,6 @@ import { useArgs } from '@storybook/addons';
import { RangeControl } from './Range';
export default {
title: 'Controls/Range',
component: RangeControl,
tags: ['docsPage'],
parameters: { controls: { include: ['value', 'min', 'max', 'step'] } },

View File

@ -4,7 +4,6 @@ import { useArgs } from '@storybook/addons';
import { TextControl } from './Text';
export default {
title: 'Controls/Text',
component: TextControl,
tags: ['docsPage'],
parameters: { controls: { include: ['value', 'maxLength'] } },