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>
47 lines
999 B
TypeScript
47 lines
999 B
TypeScript
/**
|
|
* Basic Table Cell Stories
|
|
* @generated 2025-12-11T14:37:52.648193
|
|
*/
|
|
import type { Meta, StoryObj } from '@storybook/preact';
|
|
import { BasicTableCell, type BasicTableCellProps } from '../src/atoms/BasicTableCell';
|
|
|
|
const meta: Meta<BasicTableCellProps> = {
|
|
title: '2. Atoms/BasicTableCell',
|
|
component: BasicTableCell,
|
|
tags: ['autodocs'],
|
|
parameters: {
|
|
docs: {
|
|
description: {
|
|
component: `Auto-generated BasicTableCell component
|
|
|
|
**Classification:** atom
|
|
**Slots:** None
|
|
**Figma ID:** 288:172242`
|
|
}
|
|
}
|
|
},
|
|
argTypes: {
|
|
parity: {
|
|
control: 'select',
|
|
options: ['Even', 'Odd'],
|
|
description: 'Parity variant',
|
|
},
|
|
alignment: {
|
|
control: 'select',
|
|
options: ['Left', 'Right'],
|
|
description: 'Alignment variant',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<BasicTableCellProps>;
|
|
|
|
export const Default: Story = {
|
|
args: {
|
|
parity: 'Even',
|
|
alignment: 'Left',
|
|
children: 'BasicTableCell'
|
|
},
|
|
};
|