diff --git a/packages/ui/components/forms/TextAreaFieldCopy.stories.ts b/packages/ui/components/forms/TextAreaFieldCopy.stories.ts deleted file mode 100644 index 3ef3dc35..00000000 --- a/packages/ui/components/forms/TextAreaFieldCopy.stories.ts +++ /dev/null @@ -1,62 +0,0 @@ -import { ref } from 'vue' -import { Meta, StoryObj } from '@storybook/vue3' -import TextAreaFieldCopy from './TextAreaFieldCopy.vue' - -const meta: Meta = { - title: 'Forms/TextAreaFieldCopy', - tags: ['autodocs'], - component: TextAreaFieldCopy, - argTypes: { - id: { control: 'text' }, - name: { control: 'text' }, - placeholder: { control: 'text' }, - required: { control: { expanded: true } }, - rows: { control: { type: 'range', min: 5, max: 30, step: 1 } }, - label: { control: 'text' }, - errorMessage: { control: 'text' }, - }, - render: (args) => ({ - components: { TextAreaFieldCopy }, - setup() { - const detail = ref() - return { args,detail } - }, - template: `
-

v-model value: {{ detail }}

- -
`, - }) -} - -export default meta - -type Story = StoryObj - -export const Default: Story = { - name: 'default', - args: { - id: 'detail', - name: 'detail', - label: 'お問い合わせ内容/Content', - }, -} - -export const withPlaceholder: Story = { - name: 'with placeholder', - args: { - id: 'detail', - name: 'detail', - label: 'お問い合わせ内容/Content', - placeholder: 'placeholderを設定できます', - }, -} - -export const withErrorMessage: Story = { - name: 'with error message', - args: { - id: 'detail', - name: 'detail', - label: 'お問い合わせ内容/Content', - errorMessage: 'エラーメッセージを表示します', - }, -} diff --git a/packages/ui/components/forms/TextAreaFieldCopy.vue b/packages/ui/components/forms/TextAreaFieldCopy.vue deleted file mode 100644 index 99269720..00000000 --- a/packages/ui/components/forms/TextAreaFieldCopy.vue +++ /dev/null @@ -1,106 +0,0 @@ - -