mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
fe057300f0
* delegate gradio events via a custom event dispatcher * improve md perf + share code * fix df markdown * prevent model3d from rerending too frequently * tweaks * fix more event bugs with video * add changeset * optimise handle mount * does this do anything * fix * remove old dispatches * fix dropdown position * oops * fixes * fix tests * fix types * format * fix markdown code * add changeset * fix typecheck * fix typecheck * fix demos * notebooks * fix tests * changer * maybe this * fixes * add changeset * fix chatbot alignment mobile * fix chantbot * add changeset * changeset * changeset * storybook --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
77 lines
1.9 KiB
Svelte
77 lines
1.9 KiB
Svelte
<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",
|
|
value: "Gradio Button"
|
|
},
|
|
variant: {
|
|
options: ["primary", "secondary", "stop"],
|
|
description: "The variant of the button",
|
|
control: { type: "select" },
|
|
defaultValue: "primary"
|
|
},
|
|
size: {
|
|
options: ["sm", "lg"],
|
|
description: "The size of the button",
|
|
control: { type: "select" },
|
|
defaultValue: "lg"
|
|
},
|
|
visible: {
|
|
options: [true, false],
|
|
description: "Sets the visibility of the button",
|
|
control: { type: "boolean" },
|
|
defaultValue: true
|
|
},
|
|
interactive: {
|
|
options: [true, false],
|
|
description: "If false, the button will be in a disabled state",
|
|
control: { type: "boolean" },
|
|
defaultValue: true
|
|
},
|
|
disabled: {
|
|
options: [true, false],
|
|
control: { type: "boolean" },
|
|
defaultValue: false
|
|
},
|
|
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.",
|
|
control: { type: "select" }
|
|
}
|
|
}}
|
|
/>
|
|
|
|
<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={{
|
|
icon: "https://huggingface.co/front/assets/huggingface_logo-noborder.svg"
|
|
}}
|
|
/>
|
|
<Story
|
|
name="Button with visible equal to false"
|
|
args={{
|
|
visible: false
|
|
}}
|
|
/>
|