Buckets:
| // @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, | |
| }, | |
| } | |
Xet Storage Details
- Size:
- 1.68 kB
- Xet hash:
- d729dd0185b0a4177b6f1223f9fe22de83f412e69ed011669688fcebe53f909f
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.