2023-08-04 23:47:20 +08:00
< script >
import { Meta , Template , Story } from "@storybook/addon-svelte-csf";
import Button from "./static/";
< / script >
< Meta
title="Components/Button"
component={ Button }
argTypes={{
label: {
control: "text",
description: "The text to display on the button",
name: "label",
2023-08-24 04:48:10 +08:00
value: "Gradio Button"
2023-08-04 23:47:20 +08:00
},
variant: {
options: ["primary", "secondary", "stop"],
description: "The variant of the button",
control: { type : "select" } ,
2023-08-24 04:48:10 +08:00
defaultValue: "primary"
2023-08-04 23:47:20 +08:00
},
size: {
options: ["sm", "lg"],
description: "The size of the button",
control: { type : "select" } ,
2023-08-24 04:48:10 +08:00
defaultValue: "lg"
2023-08-04 23:47:20 +08:00
},
visible: {
options: [true, false],
description: "Sets the visibility of the button",
control: { type : "boolean" } ,
2023-08-24 04:48:10 +08:00
defaultValue: true
2023-08-04 23:47:20 +08:00
},
interactive: {
options: [true, false],
description: "If false, the button will be in a disabled state",
control: { type : "boolean" } ,
2023-08-24 04:48:10 +08:00
defaultValue: true
2023-08-04 23:47:20 +08:00
},
disabled: {
options: [true, false],
control: { type : "boolean" } ,
2023-08-24 04:48:10 +08:00
defaultValue: false
2023-08-04 23:47:20 +08:00
},
scale: {
options: [null, 0.5, 1, 2],
description:
"relative width compared to adjacent Components in a Row. For example, if Component A has scale=2, and Component B has scale=1, A will be twice as wide as B. Should be an integer.",
2023-08-24 04:48:10 +08:00
control: { type : "select" }
}
2023-08-04 23:47:20 +08:00
}}
/>
< Template let:args >
< Button value = "Gradio Button" {... args } />
< / Template >
< Story name = "Primary" args = {{ variant : "primary" , size : "lg" , scale : 1 }} / >
< Story name = "Secondary" args = {{ variant : "secondary" , size : "lg" }} / >
< Story name = "Stop" args = {{ variant : "stop" , size : "lg" }} / >
< Story
name="Button with link"
args={{ link : "https://huggingface.co/welcome" }}
/>
< Story
name="Button with external image icon"
args={{
2023-08-24 04:48:10 +08:00
icon: "https://huggingface.co/front/assets/huggingface_logo-noborder.svg"
2023-08-04 23:47:20 +08:00
}}
/>
< Story
name="Button with visible equal to false"
args={{
2023-08-24 04:48:10 +08:00
visible: false
2023-08-04 23:47:20 +08:00
}}
/>