Files
dss/packages/dss-ui/stories/SidebarItemExpanded2ndLevel.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

41 lines
991 B
TypeScript

/**
* Sidebar Item / Expanded / 2nd Level Stories
* @generated 2025-12-11T14:37:52.633614
*/
import type { Meta, StoryObj } from '@storybook/preact';
import { SidebarItemExpanded2ndLevel, type SidebarItemExpanded2ndLevelProps } from '../src/atoms/SidebarItemExpanded2ndLevel';
const meta: Meta<SidebarItemExpanded2ndLevelProps> = {
title: '2. Atoms/SidebarItemExpanded2ndLevel',
component: SidebarItemExpanded2ndLevel,
tags: ['autodocs'],
parameters: {
docs: {
description: {
component: `Auto-generated SidebarItemExpanded2ndLevel component
**Classification:** atom
**Slots:** None
**Figma ID:** 28:5147`
}
}
},
argTypes: {
state: {
control: 'select',
options: ['Active', 'Default'],
description: 'State variant',
},
},
};
export default meta;
type Story = StoryObj<SidebarItemExpanded2ndLevelProps>;
export const Default: Story = {
args: {
state: 'Active',
children: 'SidebarItemExpanded2ndLevel'
},
};