Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | import { Story, Meta } from "@storybook/html"; import "@jga/ui-progress/public/build/bundle"; export default { title: "Components/Progress", } as Meta; interface Properties { label?: string; value: string; max?: string; } const TemplateFull: Story<Properties> = ({ label, value, max }) => { return ` <jga-ui-progress label="${label}" value="${value}" max="${max}" > </jga-ui-progress> `; }; const TemplateWithoutLabel: Story<Properties> = ({ value, max }) => { return ` <jga-ui-progress value="${value}" max="${max}" > </jga-ui-progress> `; }; const TemplateMinimal: Story<Properties> = ({ value }) => { return ` <jga-ui-progress value="${value}" > </jga-ui-progress> `; }; export const Default = TemplateFull.bind({}); Default.args = { label: "Default", value: "70", max: "100", }; export const WithoutLabel = TemplateWithoutLabel.bind({}); WithoutLabel.args = { value: "55", max: "100", }; export const WithoutMax = TemplateMinimal.bind({}); WithoutMax.args = { value: "25", }; |