mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-08 17:59:09 +00:00
72 lines
1.6 KiB
TypeScript
72 lines
1.6 KiB
TypeScript
// @ts-nocheck
|
|
import { Icon } from "./icon"
|
|
import * as mod from "./checkbox"
|
|
import { create } from "../storybook/scaffold"
|
|
|
|
const docs = `### Overview
|
|
Checkbox control for multi-select or agreement inputs.
|
|
|
|
Use in forms and multi-select lists.
|
|
|
|
### API
|
|
- Uses Kobalte Checkbox props (\`checked\`, \`defaultChecked\`, \`onChange\`).
|
|
- Optional: \`hideLabel\`, \`description\`, \`icon\`.
|
|
- Children render as the label.
|
|
|
|
### Variants and states
|
|
- Checked/unchecked, indeterminate, disabled (via Kobalte).
|
|
|
|
### Behavior
|
|
- Controlled or uncontrolled usage.
|
|
|
|
### Accessibility
|
|
- TODO: confirm aria attributes from Kobalte.
|
|
|
|
### Theming/tokens
|
|
- Uses \`data-component="checkbox"\` and related slots.
|
|
|
|
`
|
|
|
|
const story = create({ title: "UI/Checkbox", mod, args: { children: "Checkbox", defaultChecked: true } })
|
|
export default {
|
|
title: "UI/Checkbox",
|
|
id: "components-checkbox",
|
|
component: story.meta.component,
|
|
tags: ["autodocs"],
|
|
parameters: {
|
|
docs: {
|
|
description: {
|
|
component: docs,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
export const Basic = story.Basic
|
|
|
|
export const States = {
|
|
render: () => (
|
|
<div style={{ display: "grid", gap: "12px" }}>
|
|
<mod.Checkbox defaultChecked>Checked</mod.Checkbox>
|
|
<mod.Checkbox>Unchecked</mod.Checkbox>
|
|
<mod.Checkbox disabled>Disabled</mod.Checkbox>
|
|
<mod.Checkbox description="Helper text">With description</mod.Checkbox>
|
|
</div>
|
|
),
|
|
}
|
|
|
|
export const CustomIcon = {
|
|
render: () => (
|
|
<mod.Checkbox icon={<Icon name="check" size="small" />} defaultChecked>
|
|
Custom icon
|
|
</mod.Checkbox>
|
|
),
|
|
}
|
|
|
|
export const HiddenLabel = {
|
|
args: {
|
|
children: "Hidden label",
|
|
hideLabel: true,
|
|
},
|
|
}
|