Files
dss/packages/dss-ui/stories/DatePickerDay.stories.tsx
DSS 09b234a07f
Some checks failed
DSS Project Analysis / dss-context-update (push) Has been cancelled
feat(dss-ui): Button component with design tokens only
- 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>
2025-12-11 18:47:57 -03:00

47 lines
1.0 KiB
TypeScript

/**
* .Date Picker / Day Stories
* @generated 2025-12-11T14:37:52.592745
*/
import type { Meta, StoryObj } from '@storybook/preact';
import { DatePickerDay, type DatePickerDayProps } from '../src/atoms/DatePickerDay';
const meta: Meta<DatePickerDayProps> = {
title: '3. Molecules/DatePickerDay',
component: DatePickerDay,
tags: ['autodocs'],
parameters: {
docs: {
description: {
component: `Auto-generated DatePickerDay component
**Classification:** molecule
**Slots:** None
**Figma ID:** 781:40922`
}
}
},
argTypes: {
position: {
control: 'select',
options: ['Left', 'Middle', 'Right', 'Single'],
description: 'Position variant',
},
state: {
control: 'select',
options: ['Active', 'Default', 'Disabled', 'Selected'],
description: 'State variant',
},
},
};
export default meta;
type Story = StoryObj<DatePickerDayProps>;
export const Default: Story = {
args: {
position: 'Left',
state: 'Active',
children: 'DatePickerDay'
},
};