Some checks failed
DSS Project Analysis / dss-context-update (push) Has been cancelled
- Button.css uses only CSS custom properties, no fallbacks - Token validator now blocks hardcoded values (strict_mode: true) - Hook scripts converted from ESM (.js) to CommonJS (.cjs) - Storybook unified config with HMR disabled for nginx proxy - Added dss-ui package with Figma-synced components and stories 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
41 lines
907 B
TypeScript
41 lines
907 B
TypeScript
/**
|
|
* Carousel with Image Stories
|
|
* @generated 2025-12-11T14:37:52.576550
|
|
*/
|
|
import type { Meta, StoryObj } from '@storybook/preact';
|
|
import { CarouselWithImage, type CarouselWithImageProps } from '../src/atoms/CarouselWithImage';
|
|
|
|
const meta: Meta<CarouselWithImageProps> = {
|
|
title: '3. Molecules/CarouselWithImage',
|
|
component: CarouselWithImage,
|
|
tags: ['autodocs'],
|
|
parameters: {
|
|
docs: {
|
|
description: {
|
|
component: `Auto-generated CarouselWithImage component
|
|
|
|
**Classification:** molecule
|
|
**Slots:** icon
|
|
**Figma ID:** 164:18350`
|
|
}
|
|
}
|
|
},
|
|
argTypes: {
|
|
type: {
|
|
control: 'select',
|
|
options: ['1 Slide', '2 Slides', '3 Slides'],
|
|
description: 'Type variant',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<CarouselWithImageProps>;
|
|
|
|
export const Default: Story = {
|
|
args: {
|
|
type: '1 Slide',
|
|
children: 'CarouselWithImage'
|
|
},
|
|
};
|