-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add icon and link params to
gr.Button
(#5080)
* add icons and link params * tweak * add changeset * prepend icon param with /file= * prepend icon with /file= * restore and add button stories * add changeset * param description tweak * tweak param description * type tweak * fix i18n in story * fix formatting * fix test * tweak * fix typo * fix icon bug * fix inconsistent width * remove <a /> target * styling changes + add story --------- Co-authored-by: gradio-pr-bot <[email protected]>
- Loading branch information
1 parent
3b9494f
commit 37caa2e
Showing
7 changed files
with
254 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@gradio/button": minor | ||
"gradio": minor | ||
--- | ||
|
||
feat:Add icon and link params to `gr.Button` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<script> | ||
import { Meta, Template, Story } from "@storybook/addon-svelte-csf"; | ||
import Button from "./static/"; | ||
import { setupi18n } from "../app/src/i18n"; | ||
setupi18n(); | ||
</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 local icon file" | ||
args={{ | ||
icon: "./HF_logo.svg", | ||
}} | ||
/> | ||
|
||
<Story | ||
name="Button with visible equal to false" | ||
args={{ | ||
visible: false, | ||
}} | ||
/> | ||
|
||
<Story | ||
name="Button with local icon file" | ||
args={{ | ||
icon: "./HF_logo.svg", | ||
}} | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37caa2e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
gradio – ./
gradio.app
gradio-git-main-hugging-face.vercel.app
gradio-hugging-face.vercel.app
gradio-two.vercel.app
www.gradio.app