// @ts-nocheck — generated stub. Delete this comment after curating. /* eslint-disable */ /** * AUTO-GENERATED stub story for PixelToast. * 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 './PixelToast'; import manifest from './PixelToast.manifest'; import * as examples from './PixelToast.examples'; const meta: Meta = { title: 'UI Kit / Feedback / PixelToast', component: (Component as any).PixelToast ?? (Component as any).default, tags: ["autodocs","status-stable","cat-feedback"], parameters: { layout: 'padded', docs: { description: { component: (manifest as any)?.description ?? 'PixelToast — 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 PixelToast."}
        
); } 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 PixelToast."}
        
); } 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 PixelToast."}
        
); } return ; }, }; /** Loading */ export const Loading: Story = { name: 'Loading', tags: ["example-loading"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Loading ?? (examples as any)['loading']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'loading')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'loading' for PixelToast."}
        
); } return ; }, }; /** With Action */ export const WithAction: Story = { name: 'With Action', tags: ["example-with-action"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).WithAction ?? (examples as any)['with-action']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'with-action')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'with-action' for PixelToast."}
        
); } return ; }, }; /** With Icon */ export const WithIcon: Story = { name: 'With Icon', tags: ["example-with-icon"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).WithIcon ?? (examples as any)['with-icon']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'with-icon')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'with-icon' for PixelToast."}
        
); } return ; }, }; /** Assertive */ export const Assertive: Story = { name: 'Assertive', tags: ["example-assertive"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Assertive ?? (examples as any)['assertive']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'assertive')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'assertive' for PixelToast."}
        
); } return ; }, }; /** Auto-dismiss Progress */ export const WithProgress: Story = { name: 'Auto-dismiss Progress', tags: ["example-with-progress"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).WithProgress ?? (examples as any)['with-progress']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'with-progress')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'with-progress' for PixelToast."}
        
); } return ; }, };