1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
// @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>,
}
|