Files
tf_code/packages/ui/src/components/radio-group.stories.tsx
Adam 05d77b7d47 chore: storybook (#15285)
Co-authored-by: David Hill <iamdavidhill@gmail.com>
2026-02-26 16:05:04 -06:00

93 lines
1.9 KiB
TypeScript

// @ts-nocheck
import * as mod from "./radio-group"
import { create } from "../storybook/scaffold"
const docs = `### Overview
Segmented radio group for choosing a single option.
Use for view toggles or mode selection.
### API
- Required: \`options\`.
- Optional: \`current\`, \`defaultValue\`, \`value\`, \`label\`, \`onSelect\`.
- Optional layout: \`size\`, \`fill\`, \`pad\`.
### Variants and states
- Size variants: small, medium.
- Optional fill and padding behavior.
### Behavior
- Maps options to segmented items and manages selection.
### Accessibility
- TODO: confirm role/aria attributes from Kobalte SegmentedControl.
### Theming/tokens
- Uses \`data-component="radio-group"\` with size/pad data attributes.
`
const story = create({
title: "UI/RadioGroup",
mod,
args: {
options: ["One", "Two", "Three"],
defaultValue: "One",
},
})
export default {
title: "UI/RadioGroup",
id: "components-radio-group",
component: story.meta.component,
tags: ["autodocs"],
parameters: {
docs: {
description: {
component: docs,
},
},
},
argTypes: {
size: {
control: "select",
options: ["small", "medium"],
},
pad: {
control: "select",
options: ["none", "normal"],
},
fill: {
control: "boolean",
},
},
}
export const Basic = story.Basic
export const Sizes = {
render: () => (
<div style={{ display: "grid", gap: "12px" }}>
<mod.RadioGroup options={["One", "Two"]} defaultValue="One" size="small" />
<mod.RadioGroup options={["One", "Two"]} defaultValue="One" size="medium" />
</div>
),
}
export const Filled = {
args: {
fill: true,
pad: "none",
},
}
export const CustomLabels = {
render: () => (
<mod.RadioGroup
options={["list", "grid"]}
defaultValue="list"
label={(value) => (value === "list" ? "List view" : "Grid view")}
/>
),
}