Buckets:
| // @ts-nocheck | |
| import * as mod from "./progress" | |
| import { create } from "../storybook/scaffold" | |
| const docs = `### Overview | |
| Linear progress indicator with optional label and value display. | |
| Use in forms, uploads, or background tasks. | |
| ### API | |
| - \`value\` and \`maxValue\` control progress. | |
| - Optional: \`showValueLabel\`, \`hideLabel\`. | |
| - Children provide the label text. | |
| ### Variants and states | |
| - Supports indeterminate state via Kobalte props (if provided). | |
| ### Behavior | |
| - Uses Kobalte Progress for value calculation. | |
| ### Accessibility | |
| - TODO: confirm ARIA attributes from Kobalte. | |
| ### Theming/tokens | |
| - Uses \`data-component="progress"\` with track/fill slots. | |
| ` | |
| const story = create({ | |
| title: "UI/Progress", | |
| mod, | |
| args: { | |
| value: 60, | |
| maxValue: 100, | |
| children: "Progress", | |
| showValueLabel: true, | |
| }, | |
| }) | |
| export default { | |
| title: "UI/Progress", | |
| id: "components-progress", | |
| component: story.meta.component, | |
| tags: ["autodocs"], | |
| parameters: { | |
| docs: { | |
| description: { | |
| component: docs, | |
| }, | |
| }, | |
| }, | |
| } | |
| export const Basic = story.Basic | |
| export const NoLabel = { | |
| args: { | |
| children: "", | |
| hideLabel: true, | |
| showValueLabel: false, | |
| value: 30, | |
| }, | |
| } | |
| export const Indeterminate = { | |
| render: () => <mod.Progress>Loading</mod.Progress>, | |
| } | |
Xet Storage Details
- Size:
- 1.3 kB
- Xet hash:
- bf7d4c63ce9d45adfe66145e7b5e50035648cb7856c13aecf4271567a65013b6
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.