gradio/js/downloadbutton/DownloadButton.stories.svelte
Abubakar Abid bd2c695328
Adds a gr.DownloadButton component (#7518)
* py

* path

* barebones js

* add changeset

* add changeset

* downloadbutton

* add changeset

* changes

* clog

* commit

* revert'

* fix

* js

* add changeset

* cleanup

* download

* notebooks

* stories

* change

* fix

* format

* download

* Fix updating `icon` parameter (bug resulting from https://github.com/gradio-app/gradio/pull/7528) (#7554)

* fetch 2

* fix

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2024-02-28 12:07:36 -08:00

90 lines
2.2 KiB
Svelte

<script>
import { Meta, Template, Story } from "@storybook/addon-svelte-csf";
import DownloadButton from "./Index.svelte";
</script>
<Meta
title="Components/DownloadButton"
component={DownloadButton}
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 size compared to adjacent Components. For example if Components A and B are in a Row, and A has scale=2, and B has scale=1, A will be twice as wide as B. Should be an integer. Only applies in Rows, or top-level Components in Blocks where fill_height=True. ",
control: { type: "select" }
}
}}
/>
<Template let:args>
<DownloadButton value="" interactive="true" {...args} />
</Template>
<Story
name="Primary"
args={{ label: "Download", variant: "primary", size: "lg", scale: 1 }}
/>
<Story
name="Secondary"
args={{ label: "Download", variant: "secondary", size: "lg" }}
/>
<Story name="Stop" args={{ label: "Download", variant: "stop", size: "lg" }} />
<Story
name="Button with external image icon"
args={{
label: "Download",
icon: {
path: "https://huggingface.co/front/assets/huggingface_logo-noborder.svg",
url: "https://huggingface.co/front/assets/huggingface_logo-noborder.svg"
}
}}
/>
<Story
name="Button with visible equal to false"
args={{
label: "Download",
visible: false
}}
/>
<Story
name="Button with null label (should be collapsed)"
args={{
label: null
}}
/>