// @ts-nocheck — generated stub. Delete this comment after curating. /* eslint-disable */ /** * AUTO-GENERATED stub story for PixelTextarea. * Source: scripts/build-docs/generate-stories.ts * * Safe to edit — once this file is committed the generator will refuse * to overwrite it (a hand-authored *.stories.tsx is detected). */ import type { Meta, StoryObj } from '@storybook/react'; import * as Component from './PixelTextarea'; import manifest from './PixelTextarea.manifest'; import * as examples from './PixelTextarea.examples'; const meta: Meta = { title: 'UI Kit / Forms / PixelTextarea', component: (Component as any).PixelTextarea ?? (Component as any).default, tags: ["autodocs","status-stable","cat-forms"], parameters: { layout: 'padded', docs: { description: { component: (manifest as any)?.description ?? 'PixelTextarea — generated stub.', }, }, manifest, }, }; export default meta; type Story = StoryObj; /** Default */ export const Default: Story = { name: 'Default', tags: ["example-default"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Default ?? (examples as any)['default']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'default')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'default' for PixelTextarea."}
        
); } return ; }, }; /** Uncontrolled */ export const Uncontrolled: Story = { name: 'Uncontrolled', tags: ["example-uncontrolled"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Uncontrolled ?? (examples as any)['uncontrolled']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'uncontrolled')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'uncontrolled' for PixelTextarea."}
        
); } return ; }, }; /** Controlled */ export const Controlled: Story = { name: 'Controlled', tags: ["example-controlled"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Controlled ?? (examples as any)['controlled']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'controlled')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'controlled' for PixelTextarea."}
        
); } return ; }, }; /** Tones */ export const Tones: Story = { name: 'Tones', tags: ["example-tones"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Tones ?? (examples as any)['tones']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'tones')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'tones' for PixelTextarea."}
        
); } return ; }, }; /** Surfaces */ export const Surfaces: Story = { name: 'Surfaces', tags: ["example-surfaces"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Surfaces ?? (examples as any)['surfaces']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'surfaces')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'surfaces' for PixelTextarea."}
        
); } return ; }, }; /** With error */ export const WithError: Story = { name: 'With error', tags: ["example-with-error"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).WithError ?? (examples as any)['with-error']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'with-error')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'with-error' for PixelTextarea."}
        
); } return ; }, }; /** Disabled */ export const Disabled: Story = { name: 'Disabled', tags: ["example-disabled"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Disabled ?? (examples as any)['disabled']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'disabled')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'disabled' for PixelTextarea."}
        
); } return ; }, }; /** Autosize */ export const Autosize: Story = { name: 'Autosize', tags: ["example-autosize"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Autosize ?? (examples as any)['autosize']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'autosize')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'autosize' for PixelTextarea."}
        
); } return ; }, }; /** With char count */ export const WithCharCount: Story = { name: 'With char count', tags: ["example-with-char-count"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).WithCharCount ?? (examples as any)['with-char-count']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'with-char-count')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'with-char-count' for PixelTextarea."}
        
); } return ; }, }; /** Required */ export const Required: Story = { name: 'Required', tags: ["example-required"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Required ?? (examples as any)['required']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'required')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'required' for PixelTextarea."}
        
); } return ; }, };