chore: update versions (#10479)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Gradio PR Bot 2025-02-04 21:24:38 -08:00 committed by GitHub
parent 2e8dc74f75
commit f611983323
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
76 changed files with 350 additions and 122 deletions

View File

@ -1,5 +0,0 @@
---
"gradio": minor
---
feat:Allow image uploads to gr.load_chat

View File

@ -1,6 +0,0 @@
---
"@gradio/dataframe": minor
"gradio": minor
---
feat:Implement multiple cell selection

View File

@ -1,6 +0,0 @@
---
"gradio": minor
"website": minor
---
feat:Add sidebar to the docs

View File

@ -1,7 +0,0 @@
---
"@gradio/paramviewer": minor
"gradio": minor
"website": minor
---
feat:Add an `anchor_links` parameter to `gr.ParamViewer` that allows linking to specific parameters.

View File

@ -1,10 +0,0 @@
---
"@gradio/client": minor
"@gradio/core": minor
"@gradio/lite": minor
"@self/app": minor
"@self/spa": minor
"gradio": minor
---
feat:Allow building multipage Gradio apps

View File

@ -1,5 +0,0 @@
---
"gradio": minor
---
feat:Add support for inference `providers` in `gr.load()`

View File

@ -1,5 +0,0 @@
---
"gradio": patch
---
fix:Clean up `gr.DataFrame.postprocess()` and fix issue with getting headers of empty dataframes

View File

@ -1,6 +0,0 @@
---
"@gradio/dataframe": minor
"gradio": minor
---
feat:Expand and collapse dataframe cells

View File

@ -1,12 +0,0 @@
---
"@gradio/audio": minor
"@gradio/core": minor
"@gradio/dataframe": minor
"@gradio/image": minor
"@gradio/model3d": minor
"@gradio/upload": minor
"@gradio/video": minor
"gradio": minor
---
feat:Improve dataframe's upload accessibility

View File

@ -1,6 +0,0 @@
---
"@gradio/dataframe": minor
"gradio": minor
---
feat:Allow multiline headers in gr.Dataframe

View File

@ -1,6 +0,0 @@
---
"@gradio/dataframe": patch
"gradio": patch
---
feat:Ensure dataframe is not editable when `interactive` is False

View File

@ -1,5 +0,0 @@
---
"gradio": minor
---
feat:chore: update dropdown.py

View File

@ -1,7 +0,0 @@
---
"@gradio/imageeditor": patch
"@self/storybook": patch
"gradio": patch
---
feat:Add more ImageEditor js tests

View File

@ -1,6 +0,0 @@
---
"@gradio/sidebar": patch
"gradio": patch
---
feat:Sidebar Fixes

View File

@ -1,5 +1,27 @@
# gradio
## 5.15.0
### Features
- [#10345](https://github.com/gradio-app/gradio/pull/10345) [`39f0c23`](https://github.com/gradio-app/gradio/commit/39f0c233034449d0d0cdb77d0b34e4fca7b9cc8b) - Allow image uploads to gr.load_chat. Thanks @aliabid94!
- [#10456](https://github.com/gradio-app/gradio/pull/10456) [`8e40c15`](https://github.com/gradio-app/gradio/commit/8e40c15669ed1244d6f2288e55c2223279bd37a4) - Implement multiple cell selection. Thanks @hannahblair!
- [#10480](https://github.com/gradio-app/gradio/pull/10480) [`90f90b7`](https://github.com/gradio-app/gradio/commit/90f90b7989081b0e4422384ee699cb98781723d1) - Add sidebar to the docs. Thanks @aliabd!
- [#10495](https://github.com/gradio-app/gradio/pull/10495) [`35fda36`](https://github.com/gradio-app/gradio/commit/35fda36de9745757298cafb3d8b91cbc1a4358c9) - Add an `anchor_links` parameter to `gr.ParamViewer` that allows linking to specific parameters. Thanks @abidlabs!
- [#10433](https://github.com/gradio-app/gradio/pull/10433) [`2e8dc74`](https://github.com/gradio-app/gradio/commit/2e8dc74f751be02f7217f78d241806b42fcdca04) - Allow building multipage Gradio apps. Thanks @aliabid94!
- [#10496](https://github.com/gradio-app/gradio/pull/10496) [`a9bfbc3`](https://github.com/gradio-app/gradio/commit/a9bfbc389d325592e83fd85c5f255864dc34c8be) - Add support for inference `providers` in `gr.load()`. Thanks @abidlabs!
- [#10463](https://github.com/gradio-app/gradio/pull/10463) [`ed7a091`](https://github.com/gradio-app/gradio/commit/ed7a0919ab6b31184dc4d686b722dbeb013e9ce9) - Expand and collapse dataframe cells. Thanks @hannahblair!
- [#10478](https://github.com/gradio-app/gradio/pull/10478) [`afb96c6`](https://github.com/gradio-app/gradio/commit/afb96c64451e5a282bfee89445d831d1c87f9746) - Improve dataframe's upload accessibility. Thanks @hannahblair!
- [#10491](https://github.com/gradio-app/gradio/pull/10491) [`ff5f976`](https://github.com/gradio-app/gradio/commit/ff5f976bbb685fdd4f7c1faeda79e094f55a9f56) - Allow multiline headers in gr.Dataframe. Thanks @hannahblair!
- [#10494](https://github.com/gradio-app/gradio/pull/10494) [`10932a2`](https://github.com/gradio-app/gradio/commit/10932a291ac7f591bb1d56e4e353b51f10ecc6e3) - Ensure dataframe is not editable when `interactive` is False. Thanks @hannahblair!
- [#10485](https://github.com/gradio-app/gradio/pull/10485) [`6401d32`](https://github.com/gradio-app/gradio/commit/6401d32e79074f2e4c4beda6308c194eba4af6eb) - chore: update dropdown.py. Thanks @eltociear!
- [#10446](https://github.com/gradio-app/gradio/pull/10446) [`2cf449a`](https://github.com/gradio-app/gradio/commit/2cf449abb38815bb3414ac9bee1535f5f0f834ae) - Add more ImageEditor js tests. Thanks @freddyaboulton!
- [#10483](https://github.com/gradio-app/gradio/pull/10483) [`3750082`](https://github.com/gradio-app/gradio/commit/3750082b266464487cd5b7684ae1590ae03d3bef) - Sidebar Fixes. Thanks @dawoodkhan82!
### Fixes
- [#10476](https://github.com/gradio-app/gradio/pull/10476) [`017ed46`](https://github.com/gradio-app/gradio/commit/017ed462720766f1d28205765aade6338f58da07) - Clean up `gr.DataFrame.postprocess()` and fix issue with getting headers of empty dataframes. Thanks @abidlabs!
## 5.14.0
### Features

View File

@ -1,5 +1,11 @@
# @gradio/client
## 1.11.0
### Features
- [#10433](https://github.com/gradio-app/gradio/pull/10433) [`2e8dc74`](https://github.com/gradio-app/gradio/commit/2e8dc74f751be02f7217f78d241806b42fcdca04) - Allow building multipage Gradio apps. Thanks @aliabid94!
## 1.10.0
### Features

View File

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

View File

@ -1,5 +1,27 @@
# gradio
## 5.15.0
### Features
- [#10345](https://github.com/gradio-app/gradio/pull/10345) [`39f0c23`](https://github.com/gradio-app/gradio/commit/39f0c233034449d0d0cdb77d0b34e4fca7b9cc8b) - Allow image uploads to gr.load_chat. Thanks @aliabid94!
- [#10456](https://github.com/gradio-app/gradio/pull/10456) [`8e40c15`](https://github.com/gradio-app/gradio/commit/8e40c15669ed1244d6f2288e55c2223279bd37a4) - Implement multiple cell selection. Thanks @hannahblair!
- [#10480](https://github.com/gradio-app/gradio/pull/10480) [`90f90b7`](https://github.com/gradio-app/gradio/commit/90f90b7989081b0e4422384ee699cb98781723d1) - Add sidebar to the docs. Thanks @aliabd!
- [#10495](https://github.com/gradio-app/gradio/pull/10495) [`35fda36`](https://github.com/gradio-app/gradio/commit/35fda36de9745757298cafb3d8b91cbc1a4358c9) - Add an `anchor_links` parameter to `gr.ParamViewer` that allows linking to specific parameters. Thanks @abidlabs!
- [#10433](https://github.com/gradio-app/gradio/pull/10433) [`2e8dc74`](https://github.com/gradio-app/gradio/commit/2e8dc74f751be02f7217f78d241806b42fcdca04) - Allow building multipage Gradio apps. Thanks @aliabid94!
- [#10496](https://github.com/gradio-app/gradio/pull/10496) [`a9bfbc3`](https://github.com/gradio-app/gradio/commit/a9bfbc389d325592e83fd85c5f255864dc34c8be) - Add support for inference `providers` in `gr.load()`. Thanks @abidlabs!
- [#10463](https://github.com/gradio-app/gradio/pull/10463) [`ed7a091`](https://github.com/gradio-app/gradio/commit/ed7a0919ab6b31184dc4d686b722dbeb013e9ce9) - Expand and collapse dataframe cells. Thanks @hannahblair!
- [#10478](https://github.com/gradio-app/gradio/pull/10478) [`afb96c6`](https://github.com/gradio-app/gradio/commit/afb96c64451e5a282bfee89445d831d1c87f9746) - Improve dataframe's upload accessibility. Thanks @hannahblair!
- [#10491](https://github.com/gradio-app/gradio/pull/10491) [`ff5f976`](https://github.com/gradio-app/gradio/commit/ff5f976bbb685fdd4f7c1faeda79e094f55a9f56) - Allow multiline headers in gr.Dataframe. Thanks @hannahblair!
- [#10494](https://github.com/gradio-app/gradio/pull/10494) [`10932a2`](https://github.com/gradio-app/gradio/commit/10932a291ac7f591bb1d56e4e353b51f10ecc6e3) - Ensure dataframe is not editable when `interactive` is False. Thanks @hannahblair!
- [#10485](https://github.com/gradio-app/gradio/pull/10485) [`6401d32`](https://github.com/gradio-app/gradio/commit/6401d32e79074f2e4c4beda6308c194eba4af6eb) - chore: update dropdown.py. Thanks @eltociear!
- [#10446](https://github.com/gradio-app/gradio/pull/10446) [`2cf449a`](https://github.com/gradio-app/gradio/commit/2cf449abb38815bb3414ac9bee1535f5f0f834ae) - Add more ImageEditor js tests. Thanks @freddyaboulton!
- [#10483](https://github.com/gradio-app/gradio/pull/10483) [`3750082`](https://github.com/gradio-app/gradio/commit/3750082b266464487cd5b7684ae1590ae03d3bef) - Sidebar Fixes. Thanks @dawoodkhan82!
### Fixes
- [#10476](https://github.com/gradio-app/gradio/pull/10476) [`017ed46`](https://github.com/gradio-app/gradio/commit/017ed462720766f1d28205765aade6338f58da07) - Clean up `gr.DataFrame.postprocess()` and fix issue with getting headers of empty dataframes. Thanks @abidlabs!
## 5.14.0
### Features

View File

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

View File

@ -4,6 +4,12 @@
### Dependency updates
- @gradio/client@1.11.0
## 0.0.1
### Dependency updates
- @gradio/client@1.10.0
## 0.0.1

View File

@ -1,5 +1,17 @@
# website
## 0.48.0
### Features
- [#10480](https://github.com/gradio-app/gradio/pull/10480) [`90f90b7`](https://github.com/gradio-app/gradio/commit/90f90b7989081b0e4422384ee699cb98781723d1) - Add sidebar to the docs. Thanks @aliabd!
- [#10495](https://github.com/gradio-app/gradio/pull/10495) [`35fda36`](https://github.com/gradio-app/gradio/commit/35fda36de9745757298cafb3d8b91cbc1a4358c9) - Add an `anchor_links` parameter to `gr.ParamViewer` that allows linking to specific parameters. Thanks @abidlabs!
### Dependency updates
- @gradio/paramviewer@0.7.0
- @gradio/code@0.10.16
## 0.47.3
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "website",
"version": "0.47.3",
"version": "0.48.0",
"private": true,
"scripts": {
"dev": "pip install boto3 && python generate_jsons/generate.py && vite dev",

View File

@ -1,5 +1,12 @@
# @gradio/annotatedimage
## 0.9.6
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
## 0.9.5
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/annotatedimage",
"version": "0.9.5",
"version": "0.9.6",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,16 @@
# @self/app
## 1.47.0
### Features
- [#10433](https://github.com/gradio-app/gradio/pull/10433) [`2e8dc74`](https://github.com/gradio-app/gradio/commit/2e8dc74f751be02f7217f78d241806b42fcdca04) - Allow building multipage Gradio apps. Thanks @aliabid94!
### Dependency updates
- @gradio/client@1.11.0
- @gradio/core@0.9.0
## 1.46.3
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@self/app",
"version": "1.46.3",
"version": "1.47.0",
"private": true,
"scripts": {
"dev": "vite dev",

View File

@ -1,5 +1,17 @@
# @gradio/audio
## 0.17.0
### Features
- [#10478](https://github.com/gradio-app/gradio/pull/10478) [`afb96c6`](https://github.com/gradio-app/gradio/commit/afb96c64451e5a282bfee89445d831d1c87f9746) - Improve dataframe's upload accessibility. Thanks @hannahblair!
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
- @gradio/button@0.4.5
## 0.16.0
### Features

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/audio",
"version": "0.16.0",
"version": "0.17.0",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,12 @@
# @gradio/button
## 0.4.5
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
## 0.4.4
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/button",
"version": "0.4.4",
"version": "0.4.5",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,15 @@
# @gradio/chatbot
## 0.22.4
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
- @gradio/image@0.21.0
- @gradio/gallery@0.15.5
- @gradio/video@0.14.0
## 0.22.3
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/chatbot",
"version": "0.22.3",
"version": "0.22.4",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,11 @@
# @gradio/code
## 0.10.16
### Dependency updates
- @gradio/upload@0.15.0
## 0.10.15
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/code",
"version": "0.10.15",
"version": "0.10.16",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,11 @@
# @self/component-test
## 0.5.6
### Dependency updates
- @gradio/video@0.14.0
## 0.5.5
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@self/component-test",
"version": "0.5.5",
"version": "0.5.6",
"scripts": {
"dev": "vite dev",
"build": "vite build",

View File

@ -1,5 +1,24 @@
# @gradio/core
## 0.9.0
### Features
- [#10433](https://github.com/gradio-app/gradio/pull/10433) [`2e8dc74`](https://github.com/gradio-app/gradio/commit/2e8dc74f751be02f7217f78d241806b42fcdca04) - Allow building multipage Gradio apps. Thanks @aliabid94!
- [#10478](https://github.com/gradio-app/gradio/pull/10478) [`afb96c6`](https://github.com/gradio-app/gradio/commit/afb96c64451e5a282bfee89445d831d1c87f9746) - Improve dataframe's upload accessibility. Thanks @hannahblair!
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
- @gradio/button@0.4.5
- @gradio/paramviewer@0.7.0
- @gradio/code@0.10.16
- @gradio/image@0.21.0
- @gradio/gallery@0.15.5
- @gradio/file@0.12.5
- @gradio/video@0.14.0
## 0.8.0
### Features

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/core",
"version": "0.8.0",
"version": "0.9.0",
"type": "module",
"devDependencies": {
"@gradio/accordion": "workspace:^",

View File

@ -1,5 +1,21 @@
# @gradio/dataframe
## 0.15.0
### Features
- [#10456](https://github.com/gradio-app/gradio/pull/10456) [`8e40c15`](https://github.com/gradio-app/gradio/commit/8e40c15669ed1244d6f2288e55c2223279bd37a4) - Implement multiple cell selection. Thanks @hannahblair!
- [#10463](https://github.com/gradio-app/gradio/pull/10463) [`ed7a091`](https://github.com/gradio-app/gradio/commit/ed7a0919ab6b31184dc4d686b722dbeb013e9ce9) - Expand and collapse dataframe cells. Thanks @hannahblair!
- [#10478](https://github.com/gradio-app/gradio/pull/10478) [`afb96c6`](https://github.com/gradio-app/gradio/commit/afb96c64451e5a282bfee89445d831d1c87f9746) - Improve dataframe's upload accessibility. Thanks @hannahblair!
- [#10491](https://github.com/gradio-app/gradio/pull/10491) [`ff5f976`](https://github.com/gradio-app/gradio/commit/ff5f976bbb685fdd4f7c1faeda79e094f55a9f56) - Allow multiline headers in gr.Dataframe. Thanks @hannahblair!
- [#10494](https://github.com/gradio-app/gradio/pull/10494) [`10932a2`](https://github.com/gradio-app/gradio/commit/10932a291ac7f591bb1d56e4e353b51f10ecc6e3) - Ensure dataframe is not editable when `interactive` is False. Thanks @hannahblair!
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
- @gradio/button@0.4.5
## 0.14.0
### Features

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/dataframe",
"version": "0.14.0",
"version": "0.15.0",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,12 @@
# @gradio/dataset
## 0.4.5
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
## 0.4.4
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/dataset",
"version": "0.4.4",
"version": "0.4.5",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,12 @@
# @gradio/downloadbutton
## 0.3.5
### Dependency updates
- @gradio/client@1.11.0
- @gradio/button@0.4.5
## 0.3.4
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/downloadbutton",
"version": "0.3.4",
"version": "0.3.5",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,12 @@
# @gradio/file
## 0.12.5
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
## 0.12.4
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/file",
"version": "0.12.4",
"version": "0.12.5",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,13 @@
# @gradio/fileexplorer
## 0.5.16
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
- @gradio/file@0.12.5
## 0.5.15
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/fileexplorer",
"version": "0.5.15",
"version": "0.5.16",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,15 @@
# @gradio/gallery
## 0.15.5
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
- @gradio/image@0.21.0
- @gradio/file@0.12.5
- @gradio/video@0.14.0
## 0.15.4
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/gallery",
"version": "0.15.4",
"version": "0.15.5",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,16 @@
# @gradio/image
## 0.21.0
### Features
- [#10478](https://github.com/gradio-app/gradio/pull/10478) [`afb96c6`](https://github.com/gradio-app/gradio/commit/afb96c64451e5a282bfee89445d831d1c87f9746) - Improve dataframe's upload accessibility. Thanks @hannahblair!
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
## 0.20.4
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/image",
"version": "0.20.4",
"version": "0.21.0",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,17 @@
# @gradio/imageeditor
## 0.12.7
### Features
- [#10446](https://github.com/gradio-app/gradio/pull/10446) [`2cf449a`](https://github.com/gradio-app/gradio/commit/2cf449abb38815bb3414ac9bee1535f5f0f834ae) - Add more ImageEditor js tests. Thanks @freddyaboulton!
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
- @gradio/image@0.21.0
## 0.12.6
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/imageeditor",
"version": "0.12.6",
"version": "0.12.7",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,15 @@
# @gradio/lite
## 5.15.0
### Features
- [#10433](https://github.com/gradio-app/gradio/pull/10433) [`2e8dc74`](https://github.com/gradio-app/gradio/commit/2e8dc74f751be02f7217f78d241806b42fcdca04) - Allow building multipage Gradio apps. Thanks @aliabid94!
### Dependency updates
- @gradio/core@0.9.0
## 5.14.0
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/lite",
"version": "5.14.0",
"version": "5.15.0",
"description": "Serverless Gradio",
"type": "module",
"main": "dist/lite.js",

View File

@ -1,5 +1,16 @@
# @gradio/model3d
## 0.14.0
### Features
- [#10478](https://github.com/gradio-app/gradio/pull/10478) [`afb96c6`](https://github.com/gradio-app/gradio/commit/afb96c64451e5a282bfee89445d831d1c87f9746) - Improve dataframe's upload accessibility. Thanks @hannahblair!
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
## 0.13.15
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/model3d",
"version": "0.13.15",
"version": "0.14.0",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,14 @@
# @gradio/multimodaltextbox
## 0.9.6
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
- @gradio/image@0.21.0
- @gradio/video@0.14.0
## 0.9.5
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/multimodaltextbox",
"version": "0.9.5",
"version": "0.9.6",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,11 @@
# @gradio/paramviewer
## 0.7.0
### Features
- [#10495](https://github.com/gradio-app/gradio/pull/10495) [`35fda36`](https://github.com/gradio-app/gradio/commit/35fda36de9745757298cafb3d8b91cbc1a4358c9) - Add an `anchor_links` parameter to `gr.ParamViewer` that allows linking to specific parameters. Thanks @abidlabs!
## 0.6.4
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/paramviewer",
"version": "0.6.4",
"version": "0.7.0",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,11 @@
# @gradio/sidebar
## 0.1.1
### Features
- [#10483](https://github.com/gradio-app/gradio/pull/10483) [`3750082`](https://github.com/gradio-app/gradio/commit/3750082b266464487cd5b7684ae1590ae03d3bef) - Sidebar Fixes. Thanks @dawoodkhan82!
## 0.1.0
### Features

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/sidebar",
"version": "0.1.0",
"version": "0.1.1",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,12 @@
# @gradio/simpleimage
## 0.8.16
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
## 0.8.15
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/simpleimage",
"version": "0.8.15",
"version": "0.8.16",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,16 @@
# @self/spa
## 0.6.0
### Features
- [#10433](https://github.com/gradio-app/gradio/pull/10433) [`2e8dc74`](https://github.com/gradio-app/gradio/commit/2e8dc74f751be02f7217f78d241806b42fcdca04) - Allow building multipage Gradio apps. Thanks @aliabid94!
### Dependency updates
- @gradio/client@1.11.0
- @gradio/core@0.9.0
## 0.5.0
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@self/spa",
"version": "0.5.0",
"version": "0.6.0",
"private": true,
"type": "module",
"scripts": {

View File

@ -1,5 +1,11 @@
# @self/storybook
## 0.8.1
### Features
- [#10446](https://github.com/gradio-app/gradio/pull/10446) [`2cf449a`](https://github.com/gradio-app/gradio/commit/2cf449abb38815bb3414ac9bee1535f5f0f834ae) - Add more ImageEditor js tests. Thanks @freddyaboulton!
## 0.8.0
### Features

View File

@ -1,6 +1,6 @@
{
"name": "@self/storybook",
"version": "0.8.0",
"version": "0.8.1",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,15 @@
# @gradio/upload
## 0.15.0
### Features
- [#10478](https://github.com/gradio-app/gradio/pull/10478) [`afb96c6`](https://github.com/gradio-app/gradio/commit/afb96c64451e5a282bfee89445d831d1c87f9746) - Improve dataframe's upload accessibility. Thanks @hannahblair!
### Dependency updates
- @gradio/client@1.11.0
## 0.14.8
### Dependency updates

View File

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

View File

@ -1,5 +1,13 @@
# @gradio/uploadbutton
## 0.8.5
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
- @gradio/button@0.4.5
## 0.8.4
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/uploadbutton",
"version": "0.8.4",
"version": "0.8.5",
"description": "Gradio UI packages",
"type": "module",
"author": "",

View File

@ -1,5 +1,17 @@
# @gradio/video
## 0.14.0
### Features
- [#10478](https://github.com/gradio-app/gradio/pull/10478) [`afb96c6`](https://github.com/gradio-app/gradio/commit/afb96c64451e5a282bfee89445d831d1c87f9746) - Improve dataframe's upload accessibility. Thanks @hannahblair!
### Dependency updates
- @gradio/client@1.11.0
- @gradio/upload@0.15.0
- @gradio/image@0.21.0
## 0.13.4
### Dependency updates

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/video",
"version": "0.13.4",
"version": "0.14.0",
"description": "Gradio UI packages",
"type": "module",
"author": "",