mirror of
https://github.com/gradio-app/gradio.git
synced 2025-02-23 11:39:17 +08:00
Release v3.34.0 (#4446)
* version * fix * changes * changes --------- Co-authored-by: Ali Abid <aabid94@gmail.com>
This commit is contained in:
parent
2829507e7d
commit
8617291049
18
CHANGELOG.md
18
CHANGELOG.md
@ -2,6 +2,24 @@
|
||||
|
||||
## New Features:
|
||||
|
||||
No changes to highlight.
|
||||
|
||||
## Bug Fixes:
|
||||
|
||||
No changes to highlight.
|
||||
|
||||
## Other Changes:
|
||||
|
||||
No changes to highlight.
|
||||
|
||||
## Breaking Changes:
|
||||
|
||||
No changes to highlight.
|
||||
|
||||
# 3.34.0
|
||||
|
||||
## New Features:
|
||||
|
||||
- The `gr.UploadButton` component now supports the `variant` and `interactive` parameters by [@abidlabs](https://github.com/abidlabs) in [PR 4436](https://github.com/gradio-app/gradio/pull/4436).
|
||||
|
||||
## Bug Fixes:
|
||||
|
@ -1 +1 @@
|
||||
3.33.1
|
||||
3.34.0
|
||||
|
@ -43,7 +43,7 @@
|
||||
disable={typeof style.container === "boolean" && !style.container}
|
||||
/>
|
||||
{/if}
|
||||
{#if typeof value === "object" && value !== undefined && value !== null}
|
||||
{#if _label !== undefined && _label !== null}
|
||||
<Label on:select {selectable} {value} {show_label} {color} />
|
||||
{:else}
|
||||
<Empty><LabelIcon /></Empty>
|
||||
|
@ -309,7 +309,7 @@
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
z-index: var(--layer-3);
|
||||
z-index: var(--layer-5);
|
||||
transition: opacity 0.1s ease-in-out;
|
||||
border-radius: var(--block-radius);
|
||||
background: var(--block-background-fill);
|
||||
|
@ -80,7 +80,7 @@
|
||||
.options {
|
||||
--window-padding: var(--size-8);
|
||||
position: absolute;
|
||||
z-index: var(--layer-5);
|
||||
z-index: var(--layer-top);
|
||||
margin-left: 0;
|
||||
box-shadow: var(--shadow-drop-lg);
|
||||
border-radius: var(--container-radius);
|
||||
|
Loading…
Reference in New Issue
Block a user