Release v3.34.0 (#4446)

* version

* fix

* changes

* changes

---------

Co-authored-by: Ali Abid <aabid94@gmail.com>
This commit is contained in:
Abubakar Abid 2023-06-07 17:28:15 -05:00 committed by GitHub
parent 2829507e7d
commit 8617291049
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 22 additions and 4 deletions

View File

@ -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:

View File

@ -1 +1 @@
3.33.1
3.34.0

View File

@ -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>

View File

@ -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);

View File

@ -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);