chore: update versions (#5596)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
pngwn 2023-09-26 22:50:39 +01:00 committed by GitHub
parent 1ca5c695cf
commit 543f327723
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
101 changed files with 363 additions and 235 deletions

View File

@ -1,5 +0,0 @@
---
"website": minor
---
feat:Add the brand assets page to the website

View File

@ -1,6 +0,0 @@
---
"@gradio/client": minor
"gradio": minor
---
feat:Fix functional tests

View File

@ -1,6 +0,0 @@
---
"@gradio/app": minor
"gradio": minor
---
feat:Add `gr.on` listener method

View File

@ -1,5 +0,0 @@
---
"gradio": patch
---
fix:Use ContextVar instead of threading.local()

View File

@ -1,6 +0,0 @@
---
"@gradio/highlightedtext": patch
"gradio": patch
---
fix:Ensure `HighlightedText` with `merge_elements` loads without a value

View File

@ -1,6 +0,0 @@
---
"@gradio/textbox": minor
"gradio": minor
---
feat:Pause autoscrolling if a user scrolls up in a `gr.Textbox` and resume autoscrolling if they go all the way down

View File

@ -1,5 +0,0 @@
---
"gradio": patch
---
fix:Fix bug in example cache loading event

View File

@ -1,6 +0,0 @@
---
"@gradio/plot": minor
"gradio": minor
---
feat:Improve plot rendering

View File

@ -1,6 +0,0 @@
---
"@gradio/client": minor
"gradio": minor
---
feat:add query parameters to the `gr.Request` object through the `query_params` attribute

View File

@ -1,5 +0,0 @@
---
"gradio": patch
---
feat:[Refactoring] Convert async functions that don't contain `await` statements to normal functions

View File

@ -1,5 +0,0 @@
---
"gradio": minor
---
feat:Fix secondary hue bug in gr.themes.builder()

View File

@ -1,6 +0,0 @@
---
"@gradio/slider": minor
"gradio": minor
---
feat:Increase Slider clickable area

View File

@ -1,7 +0,0 @@
---
"@gradio/chatbot": patch
"@gradio/markdown": patch
"gradio": patch
---
feat:chore(deps): update dependency @types/prismjs to v1.26.1

View File

@ -1,5 +0,0 @@
---
"gradio": patch
---
fix:Allow Gradio apps containing `gr.Radio()`, `gr.Checkboxgroup()`, or `gr.Dropdown()` to be loaded with `gr.load()`

View File

@ -1,7 +0,0 @@
---
"@gradio/client": patch
"gradio": patch
"gradio_client": patch
---
feat:Prevent Clients from accessing API endpoints that set `api_name=False`

View File

@ -1,6 +0,0 @@
---
"@gradio/dataframe": patch
"gradio": patch
---
fix:Fix width and height issues that would cut off content in `gr.DataFrame`

View File

@ -1,5 +0,0 @@
---
"website": patch
---
fix:Styling fixes to guides

View File

@ -1,7 +0,0 @@
---
"@gradio/chatbot": patch
"@gradio/markdown": patch
"gradio": patch
---
fix:Add `render_markdown` parameter to chatbot

View File

@ -1,6 +0,0 @@
---
"gradio": minor
"website": minor
---
feat:Reorganize Docs Navbar and Fill in Gaps

View File

@ -1,6 +0,0 @@
---
"@gradio/chatbot": patch
"gradio": patch
---
fix:Fixes avatar image in chatbot being squashed

View File

@ -1,9 +0,0 @@
---
"gradio": minor
---
feat:Cleanup of .update and .get_config per component
get_config is removed, the config used is simply any attribute that is in the Block that shares a name with one of the constructor paramaters.
update is not removed for backwards compatibility, but deprecated. Instead return the component itself. Created a updateable decorator that simply checks to see if we're in an update, and if so, skips the constructor and wraps the args and kwargs in an update dictionary. easy peasy.

View File

@ -1,5 +0,0 @@
---
"gradio": patch
---
feat:Fix typos in Gallery docs

View File

@ -1,7 +0,0 @@
---
"@gradio/tabitem": patch
"@gradio/tabs": patch
"gradio": patch
---
feat:Attach `elem_classes` selectors to layout elements, and an id to the Tab button (for targeting via CSS/JS)

View File

@ -1,24 +0,0 @@
---
"@gradio/accordion": minor
"@gradio/annotatedimage": minor
"@gradio/app": minor
"@gradio/button": minor
"@gradio/chatbot": minor
"@gradio/checkbox": minor
"@gradio/checkboxgroup": minor
"@gradio/code": minor
"@gradio/dropdown": minor
"@gradio/gallery": minor
"@gradio/image": minor
"@gradio/json": minor
"@gradio/label": minor
"@gradio/number": minor
"@gradio/plot": minor
"@gradio/radio": minor
"@gradio/slider": minor
"@gradio/textbox": minor
"@gradio/upload": minor
"gradio": minor
---
feat:Accessibility Improvements

View File

@ -1,6 +0,0 @@
---
"@gradio/wasm": patch
"gradio": patch
---
feat:Upgrade Pyodide to 0.24.0 and install the native orjson package

View File

@ -1,5 +0,0 @@
---
"gradio": patch
---
fix:Fix incorrect behavior of `gr.load()` with `gr.Examples`

View File

@ -1,6 +0,0 @@
---
"gradio": minor
"website": minor
---
feat:Fix small issues in docs and guides

View File

@ -1,5 +0,0 @@
---
"gradio": patch
---
fix:setting share=True on Spaces or in wasm should warn instead of raising error

View File

@ -1,5 +1,39 @@
# gradio
## 3.45.0
### Features
- [#5675](https://github.com/gradio-app/gradio/pull/5675) [`b619e6f6e`](https://github.com/gradio-app/gradio/commit/b619e6f6e4ca55334fb86da53790e45a8f978566) - Reorganize Docs Navbar and Fill in Gaps. Thanks [@aliabd](https://github.com/aliabd)!
- [#5669](https://github.com/gradio-app/gradio/pull/5669) [`c5e969559`](https://github.com/gradio-app/gradio/commit/c5e969559612f956afcdb0c6f7b22ab8275bc49a) - Fix small issues in docs and guides. Thanks [@aliabd](https://github.com/aliabd)!
- [#5682](https://github.com/gradio-app/gradio/pull/5682) [`c57f1b75e`](https://github.com/gradio-app/gradio/commit/c57f1b75e272c76b0af4d6bd0c7f44743ff34f26) - Fix functional tests. Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5681](https://github.com/gradio-app/gradio/pull/5681) [`40de3d217`](https://github.com/gradio-app/gradio/commit/40de3d2178b61ebe424b6f6228f94c0c6f679bea) - add query parameters to the `gr.Request` object through the `query_params` attribute. Thanks [@DarhkVoyd](https://github.com/DarhkVoyd)!
- [#5653](https://github.com/gradio-app/gradio/pull/5653) [`ea0e00b20`](https://github.com/gradio-app/gradio/commit/ea0e00b207b4b90a10e9d054c4202d4e705a29ba) - Prevent Clients from accessing API endpoints that set `api_name=False`. Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5639](https://github.com/gradio-app/gradio/pull/5639) [`e1874aff8`](https://github.com/gradio-app/gradio/commit/e1874aff814d13b23f3e59ef239cc13e18ad3fa7) - Add `gr.on` listener method. Thanks [@aliabid94](https://github.com/aliabid94)!
- [#5652](https://github.com/gradio-app/gradio/pull/5652) [`2e25d4305`](https://github.com/gradio-app/gradio/commit/2e25d430582264945ae3316acd04c4453a25ce38) - Pause autoscrolling if a user scrolls up in a `gr.Textbox` and resume autoscrolling if they go all the way down. Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5642](https://github.com/gradio-app/gradio/pull/5642) [`21c7225bd`](https://github.com/gradio-app/gradio/commit/21c7225bda057117a9d3311854323520218720b5) - Improve plot rendering. Thanks [@aliabid94](https://github.com/aliabid94)!
- [#5677](https://github.com/gradio-app/gradio/pull/5677) [`9f9af327c`](https://github.com/gradio-app/gradio/commit/9f9af327c9115356433ec837f349d6286730fb97) - [Refactoring] Convert async functions that don't contain `await` statements to normal functions. Thanks [@whitphx](https://github.com/whitphx)!
- [#5660](https://github.com/gradio-app/gradio/pull/5660) [`d76555a12`](https://github.com/gradio-app/gradio/commit/d76555a122b545f0df7c9e7c1ca7bd2a6e262c86) - Fix secondary hue bug in gr.themes.builder(). Thanks [@hellofreckles](https://github.com/hellofreckles)!
- [#5697](https://github.com/gradio-app/gradio/pull/5697) [`f4e4f82b5`](https://github.com/gradio-app/gradio/commit/f4e4f82b58a65efca9030a7e8e7c5ace60d8cc10) - Increase Slider clickable area. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
- [#5671](https://github.com/gradio-app/gradio/pull/5671) [`6a36c3b78`](https://github.com/gradio-app/gradio/commit/6a36c3b786700600d3826ce1e0629cc5308ddd47) - chore(deps): update dependency @types/prismjs to v1.26.1. Thanks [@renovate](https://github.com/apps/renovate)!
- [#5240](https://github.com/gradio-app/gradio/pull/5240) [`da05e59a5`](https://github.com/gradio-app/gradio/commit/da05e59a53bbad15e5755a47f46685da18e1031e) - Cleanup of .update and .get_config per component. Thanks [@aliabid94](https://github.com/aliabid94)!/n get_config is removed, the config used is simply any attribute that is in the Block that shares a name with one of the constructor paramaters./n update is not removed for backwards compatibility, but deprecated. Instead return the component itself. Created a updateable decorator that simply checks to see if we're in an update, and if so, skips the constructor and wraps the args and kwargs in an update dictionary. easy peasy.
- [#5635](https://github.com/gradio-app/gradio/pull/5635) [`38fafb9e2`](https://github.com/gradio-app/gradio/commit/38fafb9e2a5509b444942e1d5dd48dffa20066f4) - Fix typos in Gallery docs. Thanks [@atesgoral](https://github.com/atesgoral)!
- [#5590](https://github.com/gradio-app/gradio/pull/5590) [`d1ad1f671`](https://github.com/gradio-app/gradio/commit/d1ad1f671caef9f226eb3965f39164c256d8615c) - Attach `elem_classes` selectors to layout elements, and an id to the Tab button (for targeting via CSS/JS). Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
- [#5598](https://github.com/gradio-app/gradio/pull/5598) [`6b1714386`](https://github.com/gradio-app/gradio/commit/6b17143868bdd2c1400af1199a01c1c0d5c27477) - Upgrade Pyodide to 0.24.0 and install the native orjson package. Thanks [@whitphx](https://github.com/whitphx)!
### Fixes
- [#5625](https://github.com/gradio-app/gradio/pull/5625) [`9ccc4794a`](https://github.com/gradio-app/gradio/commit/9ccc4794a72ce8319417119f6c370e7af3ffca6d) - Use ContextVar instead of threading.local(). Thanks [@cbensimon](https://github.com/cbensimon)!
- [#5602](https://github.com/gradio-app/gradio/pull/5602) [`54d21d3f1`](https://github.com/gradio-app/gradio/commit/54d21d3f18f2ddd4e796d149a0b41461f49c711b) - Ensure `HighlightedText` with `merge_elements` loads without a value. Thanks [@hannahblair](https://github.com/hannahblair)!
- [#5636](https://github.com/gradio-app/gradio/pull/5636) [`fb5964fb8`](https://github.com/gradio-app/gradio/commit/fb5964fb88082e7b956853b543c468116811cab9) - Fix bug in example cache loading event. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
- [#5633](https://github.com/gradio-app/gradio/pull/5633) [`341402337`](https://github.com/gradio-app/gradio/commit/34140233794c29d4722020e13c2d045da642dfae) - Allow Gradio apps containing `gr.Radio()`, `gr.Checkboxgroup()`, or `gr.Dropdown()` to be loaded with `gr.load()`. Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5616](https://github.com/gradio-app/gradio/pull/5616) [`7c34b434a`](https://github.com/gradio-app/gradio/commit/7c34b434aae0eb85f112a1dc8d66cefc7e2296b2) - Fix width and height issues that would cut off content in `gr.DataFrame`. Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5604](https://github.com/gradio-app/gradio/pull/5604) [`faad01f8e`](https://github.com/gradio-app/gradio/commit/faad01f8e10ef6d18249b1a4587477c59b74adb2) - Add `render_markdown` parameter to chatbot. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
- [#5593](https://github.com/gradio-app/gradio/pull/5593) [`88d43bd12`](https://github.com/gradio-app/gradio/commit/88d43bd124792d216da445adef932a2b02f5f416) - Fixes avatar image in chatbot being squashed. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
- [#5690](https://github.com/gradio-app/gradio/pull/5690) [`6b8c8afd9`](https://github.com/gradio-app/gradio/commit/6b8c8afd981fea984da568e9a0bd8bfc2a9c06c4) - Fix incorrect behavior of `gr.load()` with `gr.Examples`. Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5696](https://github.com/gradio-app/gradio/pull/5696) [`e51fcd5d5`](https://github.com/gradio-app/gradio/commit/e51fcd5d54315e8b65ee40e3de4dab17579ff6d5) - setting share=True on Spaces or in wasm should warn instead of raising error. Thanks [@abidlabs](https://github.com/abidlabs)!
## 3.44.4
### Features

View File

@ -1,5 +1,13 @@
# @gradio/client
## 0.4.0
### Features
- [#5682](https://github.com/gradio-app/gradio/pull/5682) [`c57f1b75e`](https://github.com/gradio-app/gradio/commit/c57f1b75e272c76b0af4d6bd0c7f44743ff34f26) - Fix functional tests. Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5681](https://github.com/gradio-app/gradio/pull/5681) [`40de3d217`](https://github.com/gradio-app/gradio/commit/40de3d2178b61ebe424b6f6228f94c0c6f679bea) - add query parameters to the `gr.Request` object through the `query_params` attribute. Thanks [@DarhkVoyd](https://github.com/DarhkVoyd)!
- [#5653](https://github.com/gradio-app/gradio/pull/5653) [`ea0e00b20`](https://github.com/gradio-app/gradio/commit/ea0e00b207b4b90a10e9d054c4202d4e705a29ba) - Prevent Clients from accessing API endpoints that set `api_name=False`. Thanks [@abidlabs](https://github.com/abidlabs)!
## 0.3.1
### Fixes

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/client",
"version": "0.3.1",
"version": "0.4.0",
"description": "Gradio API client",
"type": "module",
"main": "dist/index.js",

View File

@ -1,5 +1,11 @@
# gradio_client
## 0.5.2
### Features
- [#5653](https://github.com/gradio-app/gradio/pull/5653) [`ea0e00b20`](https://github.com/gradio-app/gradio/commit/ea0e00b207b4b90a10e9d054c4202d4e705a29ba) - Prevent Clients from accessing API endpoints that set `api_name=False`. Thanks [@abidlabs](https://github.com/abidlabs)!
## 0.5.1
### Features

View File

@ -1,5 +1,11 @@
# gradio_client
## 0.5.2
### Features
- [#5653](https://github.com/gradio-app/gradio/pull/5653) [`ea0e00b20`](https://github.com/gradio-app/gradio/commit/ea0e00b207b4b90a10e9d054c4202d4e705a29ba) - Prevent Clients from accessing API endpoints that set `api_name=False`. Thanks [@abidlabs](https://github.com/abidlabs)!
## 0.5.1
### Features

View File

@ -1,6 +1,6 @@
{
"name": "gradio_client",
"version": "0.5.1",
"version": "0.5.2",
"description": "",
"python": "true",
"main_changeset": true

View File

@ -1,5 +1,39 @@
# gradio
## 3.45.0
### Features
- [#5675](https://github.com/gradio-app/gradio/pull/5675) [`b619e6f6e`](https://github.com/gradio-app/gradio/commit/b619e6f6e4ca55334fb86da53790e45a8f978566) - Reorganize Docs Navbar and Fill in Gaps. Thanks [@aliabd](https://github.com/aliabd)!
- [#5669](https://github.com/gradio-app/gradio/pull/5669) [`c5e969559`](https://github.com/gradio-app/gradio/commit/c5e969559612f956afcdb0c6f7b22ab8275bc49a) - Fix small issues in docs and guides. Thanks [@aliabd](https://github.com/aliabd)!
- [#5682](https://github.com/gradio-app/gradio/pull/5682) [`c57f1b75e`](https://github.com/gradio-app/gradio/commit/c57f1b75e272c76b0af4d6bd0c7f44743ff34f26) - Fix functional tests. Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5681](https://github.com/gradio-app/gradio/pull/5681) [`40de3d217`](https://github.com/gradio-app/gradio/commit/40de3d2178b61ebe424b6f6228f94c0c6f679bea) - add query parameters to the `gr.Request` object through the `query_params` attribute. Thanks [@DarhkVoyd](https://github.com/DarhkVoyd)!
- [#5653](https://github.com/gradio-app/gradio/pull/5653) [`ea0e00b20`](https://github.com/gradio-app/gradio/commit/ea0e00b207b4b90a10e9d054c4202d4e705a29ba) - Prevent Clients from accessing API endpoints that set `api_name=False`. Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5639](https://github.com/gradio-app/gradio/pull/5639) [`e1874aff8`](https://github.com/gradio-app/gradio/commit/e1874aff814d13b23f3e59ef239cc13e18ad3fa7) - Add `gr.on` listener method. Thanks [@aliabid94](https://github.com/aliabid94)!
- [#5652](https://github.com/gradio-app/gradio/pull/5652) [`2e25d4305`](https://github.com/gradio-app/gradio/commit/2e25d430582264945ae3316acd04c4453a25ce38) - Pause autoscrolling if a user scrolls up in a `gr.Textbox` and resume autoscrolling if they go all the way down. Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5642](https://github.com/gradio-app/gradio/pull/5642) [`21c7225bd`](https://github.com/gradio-app/gradio/commit/21c7225bda057117a9d3311854323520218720b5) - Improve plot rendering. Thanks [@aliabid94](https://github.com/aliabid94)!
- [#5677](https://github.com/gradio-app/gradio/pull/5677) [`9f9af327c`](https://github.com/gradio-app/gradio/commit/9f9af327c9115356433ec837f349d6286730fb97) - [Refactoring] Convert async functions that don't contain `await` statements to normal functions. Thanks [@whitphx](https://github.com/whitphx)!
- [#5660](https://github.com/gradio-app/gradio/pull/5660) [`d76555a12`](https://github.com/gradio-app/gradio/commit/d76555a122b545f0df7c9e7c1ca7bd2a6e262c86) - Fix secondary hue bug in gr.themes.builder(). Thanks [@hellofreckles](https://github.com/hellofreckles)!
- [#5697](https://github.com/gradio-app/gradio/pull/5697) [`f4e4f82b5`](https://github.com/gradio-app/gradio/commit/f4e4f82b58a65efca9030a7e8e7c5ace60d8cc10) - Increase Slider clickable area. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
- [#5671](https://github.com/gradio-app/gradio/pull/5671) [`6a36c3b78`](https://github.com/gradio-app/gradio/commit/6a36c3b786700600d3826ce1e0629cc5308ddd47) - chore(deps): update dependency @types/prismjs to v1.26.1. Thanks [@renovate](https://github.com/apps/renovate)!
- [#5240](https://github.com/gradio-app/gradio/pull/5240) [`da05e59a5`](https://github.com/gradio-app/gradio/commit/da05e59a53bbad15e5755a47f46685da18e1031e) - Cleanup of .update and .get_config per component. Thanks [@aliabid94](https://github.com/aliabid94)!/n get_config is removed, the config used is simply any attribute that is in the Block that shares a name with one of the constructor paramaters./n update is not removed for backwards compatibility, but deprecated. Instead return the component itself. Created a updateable decorator that simply checks to see if we're in an update, and if so, skips the constructor and wraps the args and kwargs in an update dictionary. easy peasy.
- [#5635](https://github.com/gradio-app/gradio/pull/5635) [`38fafb9e2`](https://github.com/gradio-app/gradio/commit/38fafb9e2a5509b444942e1d5dd48dffa20066f4) - Fix typos in Gallery docs. Thanks [@atesgoral](https://github.com/atesgoral)!
- [#5590](https://github.com/gradio-app/gradio/pull/5590) [`d1ad1f671`](https://github.com/gradio-app/gradio/commit/d1ad1f671caef9f226eb3965f39164c256d8615c) - Attach `elem_classes` selectors to layout elements, and an id to the Tab button (for targeting via CSS/JS). Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
- [#5598](https://github.com/gradio-app/gradio/pull/5598) [`6b1714386`](https://github.com/gradio-app/gradio/commit/6b17143868bdd2c1400af1199a01c1c0d5c27477) - Upgrade Pyodide to 0.24.0 and install the native orjson package. Thanks [@whitphx](https://github.com/whitphx)!
### Fixes
- [#5625](https://github.com/gradio-app/gradio/pull/5625) [`9ccc4794a`](https://github.com/gradio-app/gradio/commit/9ccc4794a72ce8319417119f6c370e7af3ffca6d) - Use ContextVar instead of threading.local(). Thanks [@cbensimon](https://github.com/cbensimon)!
- [#5602](https://github.com/gradio-app/gradio/pull/5602) [`54d21d3f1`](https://github.com/gradio-app/gradio/commit/54d21d3f18f2ddd4e796d149a0b41461f49c711b) - Ensure `HighlightedText` with `merge_elements` loads without a value. Thanks [@hannahblair](https://github.com/hannahblair)!
- [#5636](https://github.com/gradio-app/gradio/pull/5636) [`fb5964fb8`](https://github.com/gradio-app/gradio/commit/fb5964fb88082e7b956853b543c468116811cab9) - Fix bug in example cache loading event. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
- [#5633](https://github.com/gradio-app/gradio/pull/5633) [`341402337`](https://github.com/gradio-app/gradio/commit/34140233794c29d4722020e13c2d045da642dfae) - Allow Gradio apps containing `gr.Radio()`, `gr.Checkboxgroup()`, or `gr.Dropdown()` to be loaded with `gr.load()`. Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5616](https://github.com/gradio-app/gradio/pull/5616) [`7c34b434a`](https://github.com/gradio-app/gradio/commit/7c34b434aae0eb85f112a1dc8d66cefc7e2296b2) - Fix width and height issues that would cut off content in `gr.DataFrame`. Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5604](https://github.com/gradio-app/gradio/pull/5604) [`faad01f8e`](https://github.com/gradio-app/gradio/commit/faad01f8e10ef6d18249b1a4587477c59b74adb2) - Add `render_markdown` parameter to chatbot. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
- [#5593](https://github.com/gradio-app/gradio/pull/5593) [`88d43bd12`](https://github.com/gradio-app/gradio/commit/88d43bd124792d216da445adef932a2b02f5f416) - Fixes avatar image in chatbot being squashed. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
- [#5690](https://github.com/gradio-app/gradio/pull/5690) [`6b8c8afd9`](https://github.com/gradio-app/gradio/commit/6b8c8afd981fea984da568e9a0bd8bfc2a9c06c4) - Fix incorrect behavior of `gr.load()` with `gr.Examples`. Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5696](https://github.com/gradio-app/gradio/pull/5696) [`e51fcd5d5`](https://github.com/gradio-app/gradio/commit/e51fcd5d54315e8b65ee40e3de4dab17579ff6d5) - setting share=True on Spaces or in wasm should warn instead of raising error. Thanks [@abidlabs](https://github.com/abidlabs)!
## 3.44.4
### Features

View File

@ -1,6 +1,6 @@
{
"name": "gradio",
"version": "3.44.4",
"version": "3.45.0",
"description": "",
"python": "true"
}

View File

@ -1,5 +1,17 @@
# website
## 0.7.0
### Features
- [#5643](https://github.com/gradio-app/gradio/pull/5643) [`f661c0733`](https://github.com/gradio-app/gradio/commit/f661c0733b501f1a54a0c62af2567909c7202944) - Add the brand assets page to the website. Thanks [@whitphx](https://github.com/whitphx)!
- [#5675](https://github.com/gradio-app/gradio/pull/5675) [`b619e6f6e`](https://github.com/gradio-app/gradio/commit/b619e6f6e4ca55334fb86da53790e45a8f978566) - Reorganize Docs Navbar and Fill in Gaps. Thanks [@aliabd](https://github.com/aliabd)!
- [#5669](https://github.com/gradio-app/gradio/pull/5669) [`c5e969559`](https://github.com/gradio-app/gradio/commit/c5e969559612f956afcdb0c6f7b22ab8275bc49a) - Fix small issues in docs and guides. Thanks [@aliabd](https://github.com/aliabd)!
### Fixes
- [#5608](https://github.com/gradio-app/gradio/pull/5608) [`eebf9d71f`](https://github.com/gradio-app/gradio/commit/eebf9d71f90a83bd84b62c855fdcd13b086f7ad5) - Styling fixes to guides. Thanks [@aliabd](https://github.com/aliabd)!
## 0.6.0
### Features

View File

@ -1,6 +1,6 @@
{
"name": "website",
"version": "0.6.0",
"version": "0.7.0",
"private": true,
"scripts": {
"dev": "python generate_jsons/generate.py && vite dev",

View File

@ -1,5 +1,11 @@
# @gradio/accordion
## 0.1.0
### Features
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.0.4
### Patch Changes
@ -20,4 +26,4 @@
### Features
- [#5215](https://github.com/gradio-app/gradio/pull/5215) [`fbdad78a`](https://github.com/gradio-app/gradio/commit/fbdad78af4c47454cbb570f88cc14bf4479bbceb) - Lazy load interactive or static variants of a component individually, rather than loading both variants regardless. This change will improve performance for many applications. Thanks [@pngwn](https://github.com/pngwn)!
- [#5215](https://github.com/gradio-app/gradio/pull/5215) [`fbdad78a`](https://github.com/gradio-app/gradio/commit/fbdad78af4c47454cbb570f88cc14bf4479bbceb) - Lazy load interactive or static variants of a component individually, rather than loading both variants regardless. This change will improve performance for many applications. Thanks [@pngwn](https://github.com/pngwn)!

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/accordion",
"version": "0.0.4",
"version": "0.1.0",
"description": "Gradio UI packages",
"type": "module",
"main": "./static/index.ts",

View File

@ -1,5 +1,11 @@
# @gradio/annotatedimage
## 0.2.0
### Features
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.1.2
### Patch Changes
@ -52,4 +58,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
### Patch Changes
- Updated dependencies [[`667875b2`](https://github.com/gradio-app/gradio/commit/667875b2441753e74d25bd9d3c8adedd8ede11cd)]:
- @gradio/upload@0.0.3
- @gradio/upload@0.0.3

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/annotatedimage",
"version": "0.1.2",
"version": "0.2.0",
"description": "Gradio UI packages",
"type": "module",
"main": "./static/index.ts",

View File

@ -1,5 +1,12 @@
# @gradio/app
## 1.6.0
### Features
- [#5639](https://github.com/gradio-app/gradio/pull/5639) [`e1874aff8`](https://github.com/gradio-app/gradio/commit/e1874aff814d13b23f3e59ef239cc13e18ad3fa7) - Add `gr.on` listener method. Thanks [@aliabid94](https://github.com/aliabid94)!
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 1.5.4
### Features

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/app",
"version": "1.5.4",
"version": "1.6.0",
"private": true,
"type": "module",
"scripts": {

View File

@ -1,16 +1,24 @@
# @gradio/audio
## 0.3.5
### Patch Changes
- Updated dependencies [[`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423)]:
- @gradio/button@0.2.0
- @gradio/upload@0.3.0
## 0.3.4
### Fixes
- [#5587](https://github.com/gradio-app/gradio/pull/5587) [`e0d61b8ba`](https://github.com/gradio-app/gradio/commit/e0d61b8baa0f6293f53b9bdb1647d42f9ae2583a) - Fix `.clear()` events for audio and image. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
- [#5587](https://github.com/gradio-app/gradio/pull/5587) [`e0d61b8ba`](https://github.com/gradio-app/gradio/commit/e0d61b8baa0f6293f53b9bdb1647d42f9ae2583a) - Fix `.clear()` events for audio and image. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
## 0.3.3
### Fixes
- [#5459](https://github.com/gradio-app/gradio/pull/5459) [`bd2fda77`](https://github.com/gradio-app/gradio/commit/bd2fda77fc98d815f4fb670f535af453ebee9b80) - Dispatch `stop_recording` event in Audio. Thanks [@hannahblair](https://github.com/hannahblair)!
- [#5459](https://github.com/gradio-app/gradio/pull/5459) [`bd2fda77`](https://github.com/gradio-app/gradio/commit/bd2fda77fc98d815f4fb670f535af453ebee9b80) - Dispatch `stop_recording` event in Audio. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.3.2
@ -68,4 +76,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
### Features
- [#4993](https://github.com/gradio-app/gradio/pull/4993) [`dc07a9f9`](https://github.com/gradio-app/gradio/commit/dc07a9f947de44b419d8384987a02dcf94977851) - Bringing back the "Add download button for audio" PR by [@leuryr](https://github.com/leuryr). Thanks [@abidlabs](https://github.com/abidlabs)!
- [#4993](https://github.com/gradio-app/gradio/pull/4993) [`dc07a9f9`](https://github.com/gradio-app/gradio/commit/dc07a9f947de44b419d8384987a02dcf94977851) - Bringing back the "Add download button for audio" PR by [@leuryr](https://github.com/leuryr). Thanks [@abidlabs](https://github.com/abidlabs)!

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/audio",
"version": "0.3.4",
"version": "0.3.5",
"description": "Gradio UI packages",
"type": "module",
"main": "./index.svelte",

View File

@ -1,5 +1,11 @@
# @gradio/button
## 0.2.0
### Features
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.1.3
### Patch Changes
@ -52,4 +58,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
### Patch Changes
- Updated dependencies []:
- @gradio/utils@0.0.2
- @gradio/utils@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/button",
"version": "0.1.3",
"version": "0.2.0",
"description": "Gradio UI packages",
"type": "module",
"main": "./static/index.ts",

View File

@ -1,5 +1,17 @@
# @gradio/chatbot
## 0.4.0
### Features
- [#5671](https://github.com/gradio-app/gradio/pull/5671) [`6a36c3b78`](https://github.com/gradio-app/gradio/commit/6a36c3b786700600d3826ce1e0629cc5308ddd47) - chore(deps): update dependency @types/prismjs to v1.26.1. Thanks [@renovate](https://github.com/apps/renovate)!
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
### Fixes
- [#5604](https://github.com/gradio-app/gradio/pull/5604) [`faad01f8e`](https://github.com/gradio-app/gradio/commit/faad01f8e10ef6d18249b1a4587477c59b74adb2) - Add `render_markdown` parameter to chatbot. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
- [#5593](https://github.com/gradio-app/gradio/pull/5593) [`88d43bd12`](https://github.com/gradio-app/gradio/commit/88d43bd124792d216da445adef932a2b02f5f416) - Fixes avatar image in chatbot being squashed. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
## 0.3.2
### Fixes

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/chatbot",
"version": "0.3.2",
"version": "0.4.0",
"description": "Gradio UI packages",
"type": "module",
"main": "./index.svelte",

View File

@ -1,5 +1,11 @@
# @gradio/checkbox
## 0.2.0
### Features
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.1.3
### Patch Changes
@ -48,4 +54,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
### Features
- [#5215](https://github.com/gradio-app/gradio/pull/5215) [`fbdad78a`](https://github.com/gradio-app/gradio/commit/fbdad78af4c47454cbb570f88cc14bf4479bbceb) - Lazy load interactive or static variants of a component individually, rather than loading both variants regardless. This change will improve performance for many applications. Thanks [@pngwn](https://github.com/pngwn)!
- [#5216](https://github.com/gradio-app/gradio/pull/5216) [`4b58ea6d`](https://github.com/gradio-app/gradio/commit/4b58ea6d98e7a43b3f30d8a4cb6f379bc2eca6a8) - Update i18n tokens and locale files. Thanks [@hannahblair](https://github.com/hannahblair)!
- [#5216](https://github.com/gradio-app/gradio/pull/5216) [`4b58ea6d`](https://github.com/gradio-app/gradio/commit/4b58ea6d98e7a43b3f30d8a4cb6f379bc2eca6a8) - Update i18n tokens and locale files. Thanks [@hannahblair](https://github.com/hannahblair)!

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/checkbox",
"version": "0.1.3",
"version": "0.2.0",
"description": "Gradio UI packages",
"type": "module",
"main": "./index.svelte",

View File

@ -1,5 +1,11 @@
# @gradio/checkboxgroup
## 0.3.0
### Features
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.2.0
### Features

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/checkboxgroup",
"version": "0.2.0",
"version": "0.3.0",
"description": "Gradio UI packages",
"type": "module",
"main": "index.svelte",

View File

@ -1,5 +1,11 @@
# @gradio/code
## 0.2.0
### Features
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.1.2
### Patch Changes
@ -60,4 +66,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
- Updated dependencies []:
- @gradio/atoms@0.0.2
- @gradio/upload@0.0.2
- @gradio/upload@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/code",
"version": "0.1.2",
"version": "0.2.0",
"description": "Gradio UI packages",
"type": "module",
"main": "./index.svelte",

View File

@ -1,5 +1,11 @@
# @gradio/dataframe
## 0.2.3
### Fixes
- [#5616](https://github.com/gradio-app/gradio/pull/5616) [`7c34b434a`](https://github.com/gradio-app/gradio/commit/7c34b434aae0eb85f112a1dc8d66cefc7e2296b2) - Fix width and height issues that would cut off content in `gr.DataFrame`. Thanks [@abidlabs](https://github.com/abidlabs)!
## 0.2.2
### Fixes

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/dataframe",
"version": "0.2.2",
"version": "0.2.3",
"description": "Gradio UI packages",
"type": "module",
"main": "./index.svelte",

View File

@ -1,5 +1,11 @@
# @gradio/dropdown
## 0.3.0
### Features
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.2.2
### Fixes

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/dropdown",
"version": "0.2.2",
"version": "0.3.0",
"description": "Gradio UI packages",
"type": "module",
"main": "./index.svelte",

View File

@ -1,5 +1,13 @@
# @gradio/file
## 0.1.3
### Patch Changes
- Updated dependencies [[`c57f1b75e`](https://github.com/gradio-app/gradio/commit/c57f1b75e272c76b0af4d6bd0c7f44743ff34f26), [`40de3d217`](https://github.com/gradio-app/gradio/commit/40de3d2178b61ebe424b6f6228f94c0c6f679bea), [`ea0e00b20`](https://github.com/gradio-app/gradio/commit/ea0e00b207b4b90a10e9d054c4202d4e705a29ba), [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423)]:
- @gradio/client@0.4.0
- @gradio/upload@0.3.0
## 0.1.2
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/file",
"version": "0.1.2",
"version": "0.1.3",
"description": "Gradio UI packages",
"type": "module",
"main": "./index.svelte",

View File

@ -1,5 +1,11 @@
# @gradio/gallery
## 0.4.0
### Features
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.3.4
### Patch Changes
@ -72,4 +78,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
### Features
- [#4995](https://github.com/gradio-app/gradio/pull/4995) [`3f8c210b`](https://github.com/gradio-app/gradio/commit/3f8c210b01ef1ceaaf8ee73be4bf246b5b745bbf) - Implement left and right click in `Gallery` component and show implicit images in `Gallery` grid. Thanks [@hannahblair](https://github.com/hannahblair)!
- [#4995](https://github.com/gradio-app/gradio/pull/4995) [`3f8c210b`](https://github.com/gradio-app/gradio/commit/3f8c210b01ef1ceaaf8ee73be4bf246b5b745bbf) - Implement left and right click in `Gallery` component and show implicit images in `Gallery` grid. Thanks [@hannahblair](https://github.com/hannahblair)!

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/gallery",
"version": "0.3.4",
"version": "0.4.0",
"description": "Gradio UI packages",
"type": "module",
"main": "./static/index.ts",

View File

@ -1,5 +1,11 @@
# @gradio/highlightedtext
## 0.3.1
### Fixes
- [#5602](https://github.com/gradio-app/gradio/pull/5602) [`54d21d3f1`](https://github.com/gradio-app/gradio/commit/54d21d3f18f2ddd4e796d149a0b41461f49c711b) - Ensure `HighlightedText` with `merge_elements` loads without a value. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.3.0
### Features

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/highlightedtext",
"version": "0.3.0",
"version": "0.3.1",
"description": "Gradio UI packages",
"type": "module",
"main": "./static/index.ts",

View File

@ -1,5 +1,11 @@
# @gradio/image
## 0.3.0
### Features
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.2.4
### Fixes

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/image",
"version": "0.2.4",
"version": "0.3.0",
"description": "Gradio UI packages",
"type": "module",
"main": "./index.svelte",

View File

@ -1,5 +1,11 @@
# @gradio/json
## 0.1.0
### Features
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.0.5
### Patch Changes
@ -49,4 +55,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
### Patch Changes
- Updated dependencies []:
- @gradio/atoms@0.0.2
- @gradio/atoms@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/json",
"version": "0.0.5",
"version": "0.1.0",
"description": "Gradio UI packages",
"type": "module",
"main": "./static/index.ts",

View File

@ -1,5 +1,11 @@
# @gradio/label
## 0.2.0
### Features
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.1.2
### Patch Changes
@ -50,4 +56,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
### Patch Changes
- Updated dependencies []:
- @gradio/utils@0.0.2
- @gradio/utils@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/label",
"version": "0.1.2",
"version": "0.2.0",
"description": "Gradio UI packages",
"type": "module",
"main": "./static/index.ts",

View File

@ -1,5 +1,15 @@
# @gradio/markdown
## 0.2.1
### Features
- [#5671](https://github.com/gradio-app/gradio/pull/5671) [`6a36c3b78`](https://github.com/gradio-app/gradio/commit/6a36c3b786700600d3826ce1e0629cc5308ddd47) - chore(deps): update dependency @types/prismjs to v1.26.1. Thanks [@renovate](https://github.com/apps/renovate)!
### Fixes
- [#5604](https://github.com/gradio-app/gradio/pull/5604) [`faad01f8e`](https://github.com/gradio-app/gradio/commit/faad01f8e10ef6d18249b1a4587477c59b74adb2) - Add `render_markdown` parameter to chatbot. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
## 0.2.0
### Features

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/markdown",
"version": "0.2.0",
"version": "0.2.1",
"description": "Gradio UI packages",
"type": "module",
"main": "./static/index.ts",

View File

@ -1,5 +1,12 @@
# @gradio/model3d
## 0.2.2
### Patch Changes
- Updated dependencies [[`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423)]:
- @gradio/upload@0.3.0
## 0.2.1
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/model3d",
"version": "0.2.1",
"version": "0.2.2",
"description": "Gradio UI packages",
"type": "module",
"main": "./index.svelte",

View File

@ -1,5 +1,11 @@
# @gradio/number
## 0.3.0
### Features
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.2.2
### Patch Changes
@ -49,4 +55,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
### Features
- [#5047](https://github.com/gradio-app/gradio/pull/5047) [`883ac364`](https://github.com/gradio-app/gradio/commit/883ac364f69d92128774ac446ce49bdf8415fd7b) - Add `step` param to `Number`. Thanks [@hannahblair](https://github.com/hannahblair)!
- [#5005](https://github.com/gradio-app/gradio/pull/5005) [`f5539c76`](https://github.com/gradio-app/gradio/commit/f5539c7618e31451420bd3228754774da14dc65f) - Enhancement: Add focus event to textbox and number component. Thanks [@JodyZ0203](https://github.com/JodyZ0203)!
- [#5005](https://github.com/gradio-app/gradio/pull/5005) [`f5539c76`](https://github.com/gradio-app/gradio/commit/f5539c7618e31451420bd3228754774da14dc65f) - Enhancement: Add focus event to textbox and number component. Thanks [@JodyZ0203](https://github.com/JodyZ0203)!

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/number",
"version": "0.2.2",
"version": "0.3.0",
"description": "Gradio UI packages",
"type": "module",
"main": "./index.svelte",

View File

@ -1,5 +1,12 @@
# @gradio/plot
## 0.2.0
### Features
- [#5642](https://github.com/gradio-app/gradio/pull/5642) [`21c7225bd`](https://github.com/gradio-app/gradio/commit/21c7225bda057117a9d3311854323520218720b5) - Improve plot rendering. Thanks [@aliabid94](https://github.com/aliabid94)!
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.1.2
### Patch Changes
@ -53,4 +60,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
- Updated dependencies [[`41c83070`](https://github.com/gradio-app/gradio/commit/41c83070b01632084e7d29123048a96c1e261407)]:
- @gradio/theme@0.0.2
- @gradio/utils@0.0.2
- @gradio/atoms@0.0.2
- @gradio/atoms@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/plot",
"version": "0.1.2",
"version": "0.2.0",
"description": "Gradio UI packages",
"type": "module",
"main": "./static/index.ts",

View File

@ -1,5 +1,11 @@
# @gradio/radio
## 0.3.0
### Features
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.2.0
### Features

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/radio",
"version": "0.2.0",
"version": "0.3.0",
"description": "Gradio UI packages",
"type": "module",
"main": "./index.svelte",

View File

@ -1,5 +1,12 @@
# @gradio/slider
## 0.2.0
### Features
- [#5697](https://github.com/gradio-app/gradio/pull/5697) [`f4e4f82b5`](https://github.com/gradio-app/gradio/commit/f4e4f82b58a65efca9030a7e8e7c5ace60d8cc10) - Increase Slider clickable area. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.1.3
### Features

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/slider",
"version": "0.1.3",
"version": "0.2.0",
"description": "Gradio UI packages",
"type": "module",
"main": "./index.svelte",

View File

@ -1,5 +1,11 @@
# @gradio/tabitem
## 0.0.5
### Features
- [#5590](https://github.com/gradio-app/gradio/pull/5590) [`d1ad1f671`](https://github.com/gradio-app/gradio/commit/d1ad1f671caef9f226eb3965f39164c256d8615c) - Attach `elem_classes` selectors to layout elements, and an id to the Tab button (for targeting via CSS/JS). Thanks [@abidlabs](https://github.com/abidlabs)!
## 0.0.4
### Patch Changes
@ -35,4 +41,4 @@ These improvements will be particularly beneficial to large applications.
- Corrected an issue that was causing markdown to re-render infinitely.
- Ensured that the `gr.3DModel` does re-render prematurely.
Thanks [@pngwn](https://github.com/pngwn)!
Thanks [@pngwn](https://github.com/pngwn)!

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/tabitem",
"version": "0.0.4",
"version": "0.0.5",
"description": "Gradio UI packages",
"type": "module",
"main": "./static/index.ts",

View File

@ -1,5 +1,11 @@
# @gradio/tabs
## 0.0.6
### Features
- [#5590](https://github.com/gradio-app/gradio/pull/5590) [`d1ad1f671`](https://github.com/gradio-app/gradio/commit/d1ad1f671caef9f226eb3965f39164c256d8615c) - Attach `elem_classes` selectors to layout elements, and an id to the Tab button (for targeting via CSS/JS). Thanks [@abidlabs](https://github.com/abidlabs)!
## 0.0.5
### Patch Changes
@ -40,4 +46,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
### Patch Changes
- Updated dependencies []:
- @gradio/utils@0.0.2
- @gradio/utils@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/tabs",
"version": "0.0.5",
"version": "0.0.6",
"description": "Gradio UI packages",
"type": "module",
"main": "./static/index.ts",

View File

@ -1,5 +1,12 @@
# @gradio/textbox
## 0.4.0
### Features
- [#5652](https://github.com/gradio-app/gradio/pull/5652) [`2e25d4305`](https://github.com/gradio-app/gradio/commit/2e25d430582264945ae3316acd04c4453a25ce38) - Pause autoscrolling if a user scrolls up in a `gr.Textbox` and resume autoscrolling if they go all the way down. Thanks [@abidlabs](https://github.com/abidlabs)!
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.3.0
### Features

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/textbox",
"version": "0.3.0",
"version": "0.4.0",
"description": "Gradio UI packages",
"type": "module",
"main": "index.svelte",

View File

@ -1,5 +1,12 @@
# @gradio/timeseries
## 0.0.6
### Patch Changes
- Updated dependencies [[`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423)]:
- @gradio/upload@0.3.0
## 0.0.5
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/timeseries",
"version": "0.0.5",
"version": "0.0.6",
"description": "Gradio UI packages",
"type": "module",
"main": "index.svelte",

View File

@ -1,5 +1,11 @@
# @gradio/upload
## 0.3.0
### Features
- [#5554](https://github.com/gradio-app/gradio/pull/5554) [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423) - Accessibility Improvements. Thanks [@hannahblair](https://github.com/hannahblair)!
## 0.2.1
### Patch Changes
@ -87,4 +93,4 @@ From the backend, streamed outputs are served from the `/stream/` endpoint inste
### Patch Changes
- Updated dependencies []:
- @gradio/atoms@0.0.2
- @gradio/atoms@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/upload",
"version": "0.2.1",
"version": "0.3.0",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",

View File

@ -1,5 +1,14 @@
# @gradio/uploadbutton
## 0.0.6
### Patch Changes
- Updated dependencies [[`c57f1b75e`](https://github.com/gradio-app/gradio/commit/c57f1b75e272c76b0af4d6bd0c7f44743ff34f26), [`40de3d217`](https://github.com/gradio-app/gradio/commit/40de3d2178b61ebe424b6f6228f94c0c6f679bea), [`ea0e00b20`](https://github.com/gradio-app/gradio/commit/ea0e00b207b4b90a10e9d054c4202d4e705a29ba), [`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423)]:
- @gradio/client@0.4.0
- @gradio/button@0.2.0
- @gradio/upload@0.3.0
## 0.0.5
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/uploadbutton",
"version": "0.0.5",
"version": "0.0.6",
"description": "Gradio UI packages",
"type": "module",
"main": "index.svelte",

View File

@ -1,5 +1,13 @@
# @gradio/video
## 0.0.9
### Patch Changes
- Updated dependencies [[`75ddeb390`](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423)]:
- @gradio/image@0.3.0
- @gradio/upload@0.3.0
## 0.0.8
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/video",
"version": "0.0.8",
"version": "0.0.9",
"description": "Gradio UI packages",
"type": "module",
"main": "index.svelte",

View File

@ -1,5 +1,11 @@
# @gradio/wasm
## 0.0.3
### Features
- [#5598](https://github.com/gradio-app/gradio/pull/5598) [`6b1714386`](https://github.com/gradio-app/gradio/commit/6b17143868bdd2c1400af1199a01c1c0d5c27477) - Upgrade Pyodide to 0.24.0 and install the native orjson package. Thanks [@whitphx](https://github.com/whitphx)!
## 0.0.2
### Fixes

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/wasm",
"version": "0.0.2",
"version": "0.0.3",
"description": "Gradio Wasm package",
"type": "module",
"main": "./dist/index.js",

Some files were not shown because too many files have changed in this diff Show More