mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-12 12:40:29 +08:00
chore: update versions (#7004)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
1fc8a94138
commit
0a2ba5d0b0
@ -1,6 +0,0 @@
|
||||
---
|
||||
"gradio": patch
|
||||
"gradio_client": patch
|
||||
---
|
||||
|
||||
feat:fix lint
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Fix bug preventing layout components to be used as custom components
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/client": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Fix UI freeze on rapid generators
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/paramviewer": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
feat:fix versions
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Raise error in build step if custom component package is not installed
|
@ -1,11 +0,0 @@
|
||||
---
|
||||
"@gradio/checkboxgroup": minor
|
||||
"@gradio/dropdown": minor
|
||||
"@gradio/image": minor
|
||||
"@gradio/imageeditor": minor
|
||||
"@gradio/radio": minor
|
||||
"@gradio/video": minor
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
fix:Refactor examples so they accept data in the same format as is returned by function, rename `.as_example()` to `.process_example()`
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/file": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:`gr.update(value=[])` for `gr.File()` clears it
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:publish: simplify twine_files code
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/video": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Fix Chatbot custom component template
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"gradio": patch
|
||||
"gradio_client": patch
|
||||
---
|
||||
|
||||
feat:Add encoding to open/writing files on the deploy_discord function
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/gallery": minor
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:Fix gallery thumbnail design regression
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/upload": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Fix File drag and drop for specific file_types
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
"@gradio/dataframe": minor
|
||||
"@gradio/tabitem": minor
|
||||
"@gradio/tabs": minor
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:Add `visible` and `interactive` params to `gr.Tab()`
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:Themes: fix bogus header image URL
|
45
CHANGELOG.md
45
CHANGELOG.md
@ -1,5 +1,50 @@
|
||||
# gradio
|
||||
|
||||
## 4.15.0
|
||||
|
||||
### Highlights
|
||||
|
||||
#### Custom component documentation generator ([#7030](https://github.com/gradio-app/gradio/pull/7030) [`3a944ed`](https://github.com/gradio-app/gradio/commit/3a944ed9f162a224d26959a9c556346a9d205311))
|
||||
|
||||
If your custom component has type hints and docstrings for both parameters and return values, you can now automatically generate a documentation page and README.md with no additional effort. Simply run the following command:
|
||||
|
||||
```sh
|
||||
gradio cc docs
|
||||
```
|
||||
|
||||
This will generate a Gradio app that you can upload to spaces providing rich documentation for potential users. The documentation page includes:
|
||||
|
||||
- Installation instructions.
|
||||
- A live embedded demo and working code snippet, pulled from your demo app.
|
||||
- An API reference for initialising the component, with types, default values and descriptions.
|
||||
- An explanation of how the component affects the user's predict function inputs and outputs.
|
||||
- Any additional interfaces or classes that are necessary to understand the API reference.
|
||||
- Optional links to GitHub, PyPi, and Hugging Face Spaces.
|
||||
|
||||
A README will also be generated detailing the same information but in a format that is optimised for viewing on GitHub or PyPi!
|
||||
|
||||
Thanks [@pngwn](https://github.com/pngwn)!
|
||||
|
||||
### Features
|
||||
|
||||
- [#7075](https://github.com/gradio-app/gradio/pull/7075) [`1fc8a94`](https://github.com/gradio-app/gradio/commit/1fc8a941384775f587a6ef30365960f43353cb0d) - fix lint. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
|
||||
- [#7069](https://github.com/gradio-app/gradio/pull/7069) [`07d520c`](https://github.com/gradio-app/gradio/commit/07d520c7a2590eb5544bd0b17f82ea31ecf43e00) - fix versions. Thanks [@pngwn](https://github.com/pngwn)!
|
||||
- [#7058](https://github.com/gradio-app/gradio/pull/7058) [`3642b7a`](https://github.com/gradio-app/gradio/commit/3642b7ac93128793b75b94f8d785457869a4447e) - publish: simplify twine_files code. Thanks [@akx](https://github.com/akx)!
|
||||
- [#7054](https://github.com/gradio-app/gradio/pull/7054) [`64c65d8`](https://github.com/gradio-app/gradio/commit/64c65d821983961111297a969946d87e2fc4105d) - Add encoding to open/writing files on the deploy_discord function. Thanks [@WilliamHarer](https://github.com/WilliamHarer)!
|
||||
- [#7024](https://github.com/gradio-app/gradio/pull/7024) [`f2d69fc`](https://github.com/gradio-app/gradio/commit/f2d69fc7d0c1c3457112e702b53e38a0255fc1b7) - Fix gallery thumbnail design regression. Thanks [@hannahblair](https://github.com/hannahblair)!
|
||||
- [#7018](https://github.com/gradio-app/gradio/pull/7018) [`ec28b4e`](https://github.com/gradio-app/gradio/commit/ec28b4e7c47a9233d9e3a725cc9fe8f9044dfa94) - Add `visible` and `interactive` params to `gr.Tab()`. Thanks [@hannahblair](https://github.com/hannahblair)!
|
||||
- [#7060](https://github.com/gradio-app/gradio/pull/7060) [`aaecfe5`](https://github.com/gradio-app/gradio/commit/aaecfe54d913c1c4713e23233f32ae1e4239730e) - Themes: fix bogus header image URL. Thanks [@akx](https://github.com/akx)!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#7050](https://github.com/gradio-app/gradio/pull/7050) [`a336508`](https://github.com/gradio-app/gradio/commit/a3365086468568db871940fa2807454ac047cadd) - Fix bug preventing layout components to be used as custom components. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
|
||||
- [#7055](https://github.com/gradio-app/gradio/pull/7055) [`3c3cf86`](https://github.com/gradio-app/gradio/commit/3c3cf8618a8cad1ef66a7f96664923d2c9f5e0e2) - Fix UI freeze on rapid generators. Thanks [@aliabid94](https://github.com/aliabid94)!
|
||||
- [#7046](https://github.com/gradio-app/gradio/pull/7046) [`9201f86`](https://github.com/gradio-app/gradio/commit/9201f86450c377f78a77ac003a5d5ff009a8894c) - Raise error in build step if custom component package is not installed. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
|
||||
- [#6933](https://github.com/gradio-app/gradio/pull/6933) [`9cefd2e`](https://github.com/gradio-app/gradio/commit/9cefd2e90a1d0cc4d3e4e953fc5b9b1a7afb68dd) - Refactor examples so they accept data in the same format as is returned by function, rename `.as_example()` to `.process_example()`. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
- [#6980](https://github.com/gradio-app/gradio/pull/6980) [`523b6bc`](https://github.com/gradio-app/gradio/commit/523b6bc534e221b028a3ea3f274c7466fe242d5a) - `gr.update(value=[])` for `gr.File()` clears it. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
|
||||
- [#7038](https://github.com/gradio-app/gradio/pull/7038) [`6be3c2c`](https://github.com/gradio-app/gradio/commit/6be3c2c47a616c904c8497d1fbef7a851c54d488) - Fix Chatbot custom component template. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
|
||||
- [#6982](https://github.com/gradio-app/gradio/pull/6982) [`3f139c7`](https://github.com/gradio-app/gradio/commit/3f139c7c995f749562bb007d2a567bb167669de9) - Fix File drag and drop for specific file_types. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
|
||||
|
||||
## 4.14.0
|
||||
|
||||
### Features
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/client
|
||||
|
||||
## 0.10.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#7055](https://github.com/gradio-app/gradio/pull/7055) [`3c3cf86`](https://github.com/gradio-app/gradio/commit/3c3cf8618a8cad1ef66a7f96664923d2c9f5e0e2) - Fix UI freeze on rapid generators. Thanks [@aliabid94](https://github.com/aliabid94)!
|
||||
|
||||
## 0.10.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/client",
|
||||
"version": "0.10.0",
|
||||
"version": "0.10.1",
|
||||
"description": "Gradio API client",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# gradio_client
|
||||
|
||||
## 0.8.1
|
||||
|
||||
### Features
|
||||
|
||||
- [#7075](https://github.com/gradio-app/gradio/pull/7075) [`1fc8a94`](https://github.com/gradio-app/gradio/commit/1fc8a941384775f587a6ef30365960f43353cb0d) - fix lint. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
|
||||
- [#7054](https://github.com/gradio-app/gradio/pull/7054) [`64c65d8`](https://github.com/gradio-app/gradio/commit/64c65d821983961111297a969946d87e2fc4105d) - Add encoding to open/writing files on the deploy_discord function. Thanks [@WilliamHarer](https://github.com/WilliamHarer)!
|
||||
|
||||
## 0.8.0
|
||||
|
||||
### Fixes
|
||||
|
@ -1,5 +1,12 @@
|
||||
# gradio_client
|
||||
|
||||
## 0.8.1
|
||||
|
||||
### Features
|
||||
|
||||
- [#7075](https://github.com/gradio-app/gradio/pull/7075) [`1fc8a94`](https://github.com/gradio-app/gradio/commit/1fc8a941384775f587a6ef30365960f43353cb0d) - fix lint. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
|
||||
- [#7054](https://github.com/gradio-app/gradio/pull/7054) [`64c65d8`](https://github.com/gradio-app/gradio/commit/64c65d821983961111297a969946d87e2fc4105d) - Add encoding to open/writing files on the deploy_discord function. Thanks [@WilliamHarer](https://github.com/WilliamHarer)!
|
||||
|
||||
## 0.8.0
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradio_client",
|
||||
"version": "0.8.0",
|
||||
"version": "0.8.1",
|
||||
"description": "",
|
||||
"python": "true",
|
||||
"main_changeset": true
|
||||
|
@ -1,5 +1,50 @@
|
||||
# gradio
|
||||
|
||||
## 4.15.0
|
||||
|
||||
### Highlights
|
||||
|
||||
#### Custom component documentation generator ([#7030](https://github.com/gradio-app/gradio/pull/7030) [`3a944ed`](https://github.com/gradio-app/gradio/commit/3a944ed9f162a224d26959a9c556346a9d205311))
|
||||
|
||||
If your custom component has type hints and docstrings for both parameters and return values, you can now automatically generate a documentation page and README.md with no additional effort. Simply run the following command:
|
||||
|
||||
```sh
|
||||
gradio cc docs
|
||||
```
|
||||
|
||||
This will generate a Gradio app that you can upload to spaces providing rich documentation for potential users. The documentation page includes:
|
||||
|
||||
- Installation instructions.
|
||||
- A live embedded demo and working code snippet, pulled from your demo app.
|
||||
- An API reference for initialising the component, with types, default values and descriptions.
|
||||
- An explanation of how the component affects the user's predict function inputs and outputs.
|
||||
- Any additional interfaces or classes that are necessary to understand the API reference.
|
||||
- Optional links to GitHub, PyPi, and Hugging Face Spaces.
|
||||
|
||||
A README will also be generated detailing the same information but in a format that is optimised for viewing on GitHub or PyPi!
|
||||
|
||||
Thanks [@pngwn](https://github.com/pngwn)!
|
||||
|
||||
### Features
|
||||
|
||||
- [#7075](https://github.com/gradio-app/gradio/pull/7075) [`1fc8a94`](https://github.com/gradio-app/gradio/commit/1fc8a941384775f587a6ef30365960f43353cb0d) - fix lint. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
|
||||
- [#7069](https://github.com/gradio-app/gradio/pull/7069) [`07d520c`](https://github.com/gradio-app/gradio/commit/07d520c7a2590eb5544bd0b17f82ea31ecf43e00) - fix versions. Thanks [@pngwn](https://github.com/pngwn)!
|
||||
- [#7058](https://github.com/gradio-app/gradio/pull/7058) [`3642b7a`](https://github.com/gradio-app/gradio/commit/3642b7ac93128793b75b94f8d785457869a4447e) - publish: simplify twine_files code. Thanks [@akx](https://github.com/akx)!
|
||||
- [#7054](https://github.com/gradio-app/gradio/pull/7054) [`64c65d8`](https://github.com/gradio-app/gradio/commit/64c65d821983961111297a969946d87e2fc4105d) - Add encoding to open/writing files on the deploy_discord function. Thanks [@WilliamHarer](https://github.com/WilliamHarer)!
|
||||
- [#7024](https://github.com/gradio-app/gradio/pull/7024) [`f2d69fc`](https://github.com/gradio-app/gradio/commit/f2d69fc7d0c1c3457112e702b53e38a0255fc1b7) - Fix gallery thumbnail design regression. Thanks [@hannahblair](https://github.com/hannahblair)!
|
||||
- [#7018](https://github.com/gradio-app/gradio/pull/7018) [`ec28b4e`](https://github.com/gradio-app/gradio/commit/ec28b4e7c47a9233d9e3a725cc9fe8f9044dfa94) - Add `visible` and `interactive` params to `gr.Tab()`. Thanks [@hannahblair](https://github.com/hannahblair)!
|
||||
- [#7060](https://github.com/gradio-app/gradio/pull/7060) [`aaecfe5`](https://github.com/gradio-app/gradio/commit/aaecfe54d913c1c4713e23233f32ae1e4239730e) - Themes: fix bogus header image URL. Thanks [@akx](https://github.com/akx)!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#7050](https://github.com/gradio-app/gradio/pull/7050) [`a336508`](https://github.com/gradio-app/gradio/commit/a3365086468568db871940fa2807454ac047cadd) - Fix bug preventing layout components to be used as custom components. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
|
||||
- [#7055](https://github.com/gradio-app/gradio/pull/7055) [`3c3cf86`](https://github.com/gradio-app/gradio/commit/3c3cf8618a8cad1ef66a7f96664923d2c9f5e0e2) - Fix UI freeze on rapid generators. Thanks [@aliabid94](https://github.com/aliabid94)!
|
||||
- [#7046](https://github.com/gradio-app/gradio/pull/7046) [`9201f86`](https://github.com/gradio-app/gradio/commit/9201f86450c377f78a77ac003a5d5ff009a8894c) - Raise error in build step if custom component package is not installed. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
|
||||
- [#6933](https://github.com/gradio-app/gradio/pull/6933) [`9cefd2e`](https://github.com/gradio-app/gradio/commit/9cefd2e90a1d0cc4d3e4e953fc5b9b1a7afb68dd) - Refactor examples so they accept data in the same format as is returned by function, rename `.as_example()` to `.process_example()`. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
- [#6980](https://github.com/gradio-app/gradio/pull/6980) [`523b6bc`](https://github.com/gradio-app/gradio/commit/523b6bc534e221b028a3ea3f274c7466fe242d5a) - `gr.update(value=[])` for `gr.File()` clears it. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
|
||||
- [#7038](https://github.com/gradio-app/gradio/pull/7038) [`6be3c2c`](https://github.com/gradio-app/gradio/commit/6be3c2c47a616c904c8497d1fbef7a851c54d488) - Fix Chatbot custom component template. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
|
||||
- [#6982](https://github.com/gradio-app/gradio/pull/6982) [`3f139c7`](https://github.com/gradio-app/gradio/commit/3f139c7c995f749562bb007d2a567bb167669de9) - Fix File drag and drop for specific file_types. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
|
||||
|
||||
## 4.14.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradio",
|
||||
"version": "4.14.0",
|
||||
"version": "4.15.0",
|
||||
"description": "",
|
||||
"python": "true"
|
||||
}
|
||||
|
@ -1,10 +1,17 @@
|
||||
# website
|
||||
|
||||
## 0.21.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies []:
|
||||
- @gradio/code@0.3.7
|
||||
|
||||
## 0.21.2
|
||||
|
||||
### Features
|
||||
|
||||
- [#6997](https://github.com/gradio-app/gradio/pull/6997) [`523c08f`](https://github.com/gradio-app/gradio/commit/523c08fe3036f9d72416f7599fe0c64c1a4af823) - Design changes to Playground. Thanks [@aliabd](https://github.com/aliabd)!
|
||||
- [#6997](https://github.com/gradio-app/gradio/pull/6997) [`523c08f`](https://github.com/gradio-app/gradio/commit/523c08fe3036f9d72416f7599fe0c64c1a4af823) - Design changes to Playground. Thanks [@aliabd](https://github.com/aliabd)!
|
||||
|
||||
## 0.21.1
|
||||
|
||||
@ -281,4 +288,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#5007](https://github.com/gradio-app/gradio/pull/5007) [`71c90394`](https://github.com/gradio-app/gradio/commit/71c90394012a9cfe10eae312b437a6deff52da3a) - Make sure tags aren't rendered inside a guide. Thanks [@aliabd](https://github.com/aliabd)!
|
||||
- [#5007](https://github.com/gradio-app/gradio/pull/5007) [`71c90394`](https://github.com/gradio-app/gradio/commit/71c90394012a9cfe10eae312b437a6deff52da3a) - Make sure tags aren't rendered inside a guide. Thanks [@aliabd](https://github.com/aliabd)!
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "website",
|
||||
"version": "0.21.2",
|
||||
"version": "0.21.3",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "python generate_jsons/generate.py && vite dev",
|
||||
@ -22,7 +22,7 @@
|
||||
},
|
||||
"type": "module",
|
||||
"dependencies": {
|
||||
"@gradio/code": "0.3.6",
|
||||
"@gradio/code": "0.3.7",
|
||||
"@sindresorhus/slugify": "^2.2.0",
|
||||
"@sveltejs/adapter-vercel": "^3.0.3",
|
||||
"hast-util-to-string": "^3.0.0",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/annotatedimage
|
||||
|
||||
## 0.4.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`3c3cf86`](https://github.com/gradio-app/gradio/commit/3c3cf8618a8cad1ef66a7f96664923d2c9f5e0e2), [`3f139c7`](https://github.com/gradio-app/gradio/commit/3f139c7c995f749562bb007d2a567bb167669de9)]:
|
||||
- @gradio/client@0.10.1
|
||||
- @gradio/upload@0.6.1
|
||||
|
||||
## 0.4.1
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/annotatedimage",
|
||||
"version": "0.4.1",
|
||||
"version": "0.4.2",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,30 @@
|
||||
# @gradio/app
|
||||
|
||||
## 1.21.0
|
||||
|
||||
### Highlights
|
||||
|
||||
#### Custom component documentation generator ([#7030](https://github.com/gradio-app/gradio/pull/7030) [`3a944ed`](https://github.com/gradio-app/gradio/commit/3a944ed9f162a224d26959a9c556346a9d205311))
|
||||
|
||||
If your custom component has type hints and docstrings for both parameters and return values, you can now automatically generate a documentation page and README.md with no additional effort. Simply run the following command:
|
||||
|
||||
```sh
|
||||
gradio cc docs
|
||||
```
|
||||
|
||||
This will generate a Gradio app that you can upload to spaces providing rich documentation for potential users. The documentation page includes:
|
||||
|
||||
- Installation instructions.
|
||||
- A live embedded demo and working code snippet, pulled from your demo app.
|
||||
- An API reference for initialising the component, with types, default values and descriptions.
|
||||
- An explanation of how the component affects the user's predict function inputs and outputs.
|
||||
- Any additional interfaces or classes that are necessary to understand the API reference.
|
||||
- Optional links to GitHub, PyPi, and Hugging Face Spaces.
|
||||
|
||||
A README will also be generated detailing the same information but in a format that is optimised for viewing on GitHub or PyPi!
|
||||
|
||||
Thanks [@pngwn](https://github.com/pngwn)!
|
||||
|
||||
## 1.20.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/app",
|
||||
"version": "1.20.0",
|
||||
"version": "1.21.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -1,5 +1,14 @@
|
||||
# @gradio/audio
|
||||
|
||||
## 0.7.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`3c3cf86`](https://github.com/gradio-app/gradio/commit/3c3cf8618a8cad1ef66a7f96664923d2c9f5e0e2), [`3f139c7`](https://github.com/gradio-app/gradio/commit/3f139c7c995f749562bb007d2a567bb167669de9)]:
|
||||
- @gradio/client@0.10.1
|
||||
- @gradio/upload@0.6.1
|
||||
- @gradio/button@0.2.17
|
||||
|
||||
## 0.7.1
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/audio",
|
||||
"version": "0.7.1",
|
||||
"version": "0.7.2",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/button
|
||||
|
||||
## 0.2.17
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`3c3cf86`](https://github.com/gradio-app/gradio/commit/3c3cf8618a8cad1ef66a7f96664923d2c9f5e0e2), [`3f139c7`](https://github.com/gradio-app/gradio/commit/3f139c7c995f749562bb007d2a567bb167669de9)]:
|
||||
- @gradio/client@0.10.1
|
||||
- @gradio/upload@0.6.1
|
||||
|
||||
## 0.2.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/button",
|
||||
"version": "0.2.16",
|
||||
"version": "0.2.17",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,21 +1,32 @@
|
||||
# @gradio/chatbot
|
||||
|
||||
## 0.6.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`3c3cf86`](https://github.com/gradio-app/gradio/commit/3c3cf8618a8cad1ef66a7f96664923d2c9f5e0e2), [`9cefd2e`](https://github.com/gradio-app/gradio/commit/9cefd2e90a1d0cc4d3e4e953fc5b9b1a7afb68dd), [`6be3c2c`](https://github.com/gradio-app/gradio/commit/6be3c2c47a616c904c8497d1fbef7a851c54d488), [`3f139c7`](https://github.com/gradio-app/gradio/commit/3f139c7c995f749562bb007d2a567bb167669de9)]:
|
||||
- @gradio/client@0.10.1
|
||||
- @gradio/image@0.7.0
|
||||
- @gradio/video@0.4.0
|
||||
- @gradio/upload@0.6.1
|
||||
- @gradio/audio@0.7.2
|
||||
|
||||
## 0.6.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#6958](https://github.com/gradio-app/gradio/pull/6958) [`0f0498b`](https://github.com/gradio-app/gradio/commit/0f0498bf97a036efe47d01b47c4b26000d8d1df3) - Ensure Chatbot theme text size is set correctly. Thanks [@hannahblair](https://github.com/hannahblair)!
|
||||
- [#6958](https://github.com/gradio-app/gradio/pull/6958) [`0f0498b`](https://github.com/gradio-app/gradio/commit/0f0498bf97a036efe47d01b47c4b26000d8d1df3) - Ensure Chatbot theme text size is set correctly. Thanks [@hannahblair](https://github.com/hannahblair)!
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#6897](https://github.com/gradio-app/gradio/pull/6897) [`fb9c6ca`](https://github.com/gradio-app/gradio/commit/fb9c6cacd7ca4598c000f1f97d7d39a8c4463519) - Lite: Chatbot. Thanks [@whitphx](https://github.com/whitphx)!
|
||||
- [#6900](https://github.com/gradio-app/gradio/pull/6900) [`4511d57`](https://github.com/gradio-app/gradio/commit/4511d57c46bf82c48e8e575040ff7dab528b8d51) - Fix the aria-label attrs in `gr.Chatbot()`. Thanks [@whitphx](https://github.com/whitphx)!
|
||||
- [#6897](https://github.com/gradio-app/gradio/pull/6897) [`fb9c6ca`](https://github.com/gradio-app/gradio/commit/fb9c6cacd7ca4598c000f1f97d7d39a8c4463519) - Lite: Chatbot. Thanks [@whitphx](https://github.com/whitphx)!
|
||||
- [#6900](https://github.com/gradio-app/gradio/pull/6900) [`4511d57`](https://github.com/gradio-app/gradio/commit/4511d57c46bf82c48e8e575040ff7dab528b8d51) - Fix the aria-label attrs in `gr.Chatbot()`. Thanks [@whitphx](https://github.com/whitphx)!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#6899](https://github.com/gradio-app/gradio/pull/6899) [`bd11d6e`](https://github.com/gradio-app/gradio/commit/bd11d6e570755405eac637f1ef71b8d7be09ff67) - Remove the styles on the audio elements in the Chatbot component. Thanks [@whitphx](https://github.com/whitphx)!
|
||||
- [#6899](https://github.com/gradio-app/gradio/pull/6899) [`bd11d6e`](https://github.com/gradio-app/gradio/commit/bd11d6e570755405eac637f1ef71b8d7be09ff67) - Remove the styles on the audio elements in the Chatbot component. Thanks [@whitphx](https://github.com/whitphx)!
|
||||
|
||||
## 0.5.6
|
||||
|
||||
@ -320,4 +331,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
|
||||
- @gradio/theme@0.0.2
|
||||
- @gradio/utils@0.0.2
|
||||
- @gradio/atoms@0.0.2
|
||||
- @gradio/upload@0.0.2
|
||||
- @gradio/upload@0.0.2
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/chatbot",
|
||||
"version": "0.6.1",
|
||||
"version": "0.6.2",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/checkboxgroup
|
||||
|
||||
## 0.4.0
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#6933](https://github.com/gradio-app/gradio/pull/6933) [`9cefd2e`](https://github.com/gradio-app/gradio/commit/9cefd2e90a1d0cc4d3e4e953fc5b9b1a7afb68dd) - Refactor examples so they accept data in the same format as is returned by function, rename `.as_example()` to `.process_example()`. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
|
||||
## 0.3.8
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/checkboxgroup",
|
||||
"version": "0.3.8",
|
||||
"version": "0.4.0",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/code
|
||||
|
||||
## 0.3.7
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`3f139c7`](https://github.com/gradio-app/gradio/commit/3f139c7c995f749562bb007d2a567bb167669de9)]:
|
||||
- @gradio/upload@0.6.1
|
||||
|
||||
## 0.3.6
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/code",
|
||||
"version": "0.3.6",
|
||||
"version": "0.3.7",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/dataframe
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#7018](https://github.com/gradio-app/gradio/pull/7018) [`ec28b4e`](https://github.com/gradio-app/gradio/commit/ec28b4e7c47a9233d9e3a725cc9fe8f9044dfa94) - Add `visible` and `interactive` params to `gr.Tab()`. Thanks [@hannahblair](https://github.com/hannahblair)!
|
||||
|
||||
## 0.4.6
|
||||
|
||||
### Patch Changes
|
||||
@ -308,4 +314,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
|
||||
|
||||
- Updated dependencies [[`667875b2`](https://github.com/gradio-app/gradio/commit/667875b2441753e74d25bd9d3c8adedd8ede11cd), [`37caa2e0`](https://github.com/gradio-app/gradio/commit/37caa2e0fe95d6cab8beb174580fb557904f137f)]:
|
||||
- @gradio/upload@0.0.3
|
||||
- @gradio/button@0.1.0
|
||||
- @gradio/button@0.1.0
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/dataframe",
|
||||
"version": "0.4.6",
|
||||
"version": "0.5.0",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/dataset
|
||||
|
||||
## 0.1.17
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`3c3cf86`](https://github.com/gradio-app/gradio/commit/3c3cf8618a8cad1ef66a7f96664923d2c9f5e0e2), [`3f139c7`](https://github.com/gradio-app/gradio/commit/3f139c7c995f749562bb007d2a567bb167669de9)]:
|
||||
- @gradio/client@0.10.1
|
||||
- @gradio/upload@0.6.1
|
||||
|
||||
## 0.1.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/dataset",
|
||||
"version": "0.1.16",
|
||||
"version": "0.1.17",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/dropdown
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#6933](https://github.com/gradio-app/gradio/pull/6933) [`9cefd2e`](https://github.com/gradio-app/gradio/commit/9cefd2e90a1d0cc4d3e4e953fc5b9b1a7afb68dd) - Refactor examples so they accept data in the same format as is returned by function, rename `.as_example()` to `.process_example()`. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
|
||||
## 0.4.3
|
||||
|
||||
### Patch Changes
|
||||
@ -195,4 +201,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
|
||||
### Fixes
|
||||
|
||||
- [#5062](https://github.com/gradio-app/gradio/pull/5062) [`7d897165`](https://github.com/gradio-app/gradio/commit/7d89716519d0751072792c9bbda668ffeb597296) - `gr.Dropdown` now has correct behavior in static mode as well as when an option is selected. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
- [#5039](https://github.com/gradio-app/gradio/pull/5039) [`620e4645`](https://github.com/gradio-app/gradio/commit/620e46452729d6d4877b3fab84a65daf2f2b7bc6) - `gr.Dropdown()` now supports values with arbitrary characters and doesn't clear value when re-focused. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
- [#5039](https://github.com/gradio-app/gradio/pull/5039) [`620e4645`](https://github.com/gradio-app/gradio/commit/620e46452729d6d4877b3fab84a65daf2f2b7bc6) - `gr.Dropdown()` now supports values with arbitrary characters and doesn't clear value when re-focused. Thanks [@abidlabs](https://github.com/abidlabs)!
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/dropdown",
|
||||
"version": "0.4.3",
|
||||
"version": "0.5.0",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/file
|
||||
|
||||
## 0.4.7
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#6980](https://github.com/gradio-app/gradio/pull/6980) [`523b6bc`](https://github.com/gradio-app/gradio/commit/523b6bc534e221b028a3ea3f274c7466fe242d5a) - `gr.update(value=[])` for `gr.File()` clears it. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
|
||||
|
||||
## 0.4.6
|
||||
|
||||
### Patch Changes
|
||||
@ -314,4 +320,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
|
||||
- Updated dependencies []:
|
||||
- @gradio/utils@0.0.2
|
||||
- @gradio/atoms@0.0.2
|
||||
- @gradio/upload@0.0.2
|
||||
- @gradio/upload@0.0.2
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/file",
|
||||
"version": "0.4.6",
|
||||
"version": "0.4.7",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# @gradio/fileexplorer
|
||||
|
||||
## 0.3.17
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`3c3cf86`](https://github.com/gradio-app/gradio/commit/3c3cf8618a8cad1ef66a7f96664923d2c9f5e0e2), [`523b6bc`](https://github.com/gradio-app/gradio/commit/523b6bc534e221b028a3ea3f274c7466fe242d5a), [`3f139c7`](https://github.com/gradio-app/gradio/commit/3f139c7c995f749562bb007d2a567bb167669de9)]:
|
||||
- @gradio/client@0.10.1
|
||||
- @gradio/file@0.4.7
|
||||
- @gradio/upload@0.6.1
|
||||
|
||||
## 0.3.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/fileexplorer",
|
||||
"version": "0.3.16",
|
||||
"version": "0.3.17",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/gallery
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#7024](https://github.com/gradio-app/gradio/pull/7024) [`f2d69fc`](https://github.com/gradio-app/gradio/commit/f2d69fc7d0c1c3457112e702b53e38a0255fc1b7) - Fix gallery thumbnail design regression. Thanks [@hannahblair](https://github.com/hannahblair)!
|
||||
|
||||
## 0.4.17
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/gallery",
|
||||
"version": "0.4.17",
|
||||
"version": "0.5.0",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/image
|
||||
|
||||
## 0.7.0
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#6933](https://github.com/gradio-app/gradio/pull/6933) [`9cefd2e`](https://github.com/gradio-app/gradio/commit/9cefd2e90a1d0cc4d3e4e953fc5b9b1a7afb68dd) - Refactor examples so they accept data in the same format as is returned by function, rename `.as_example()` to `.process_example()`. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
|
||||
## 0.6.1
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/image",
|
||||
"version": "0.6.1",
|
||||
"version": "0.7.0",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/imageeditor
|
||||
|
||||
## 0.3.0
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#6933](https://github.com/gradio-app/gradio/pull/6933) [`9cefd2e`](https://github.com/gradio-app/gradio/commit/9cefd2e90a1d0cc4d3e4e953fc5b9b1a7afb68dd) - Refactor examples so they accept data in the same format as is returned by function, rename `.as_example()` to `.process_example()`. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
|
||||
## 0.2.3
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/imageeditor",
|
||||
"version": "0.2.3",
|
||||
"version": "0.3.0",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/model3d
|
||||
|
||||
## 0.4.15
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`3c3cf86`](https://github.com/gradio-app/gradio/commit/3c3cf8618a8cad1ef66a7f96664923d2c9f5e0e2), [`3f139c7`](https://github.com/gradio-app/gradio/commit/3f139c7c995f749562bb007d2a567bb167669de9)]:
|
||||
- @gradio/client@0.10.1
|
||||
- @gradio/upload@0.6.1
|
||||
|
||||
## 0.4.14
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/model3d",
|
||||
"version": "0.4.14",
|
||||
"version": "0.4.15",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,12 +1,10 @@
|
||||
---
|
||||
"@gradio/app": minor
|
||||
"@gradio/paramviewer": minor
|
||||
"gradio": minor
|
||||
---
|
||||
# @gradio/paramviewer
|
||||
|
||||
highlight:
|
||||
## 0.3.0
|
||||
|
||||
#### Custom component documentation generator
|
||||
### Highlights
|
||||
|
||||
#### Custom component documentation generator ([#7030](https://github.com/gradio-app/gradio/pull/7030) [`3a944ed`](https://github.com/gradio-app/gradio/commit/3a944ed9f162a224d26959a9c556346a9d205311))
|
||||
|
||||
If your custom component has type hints and docstrings for both parameters and return values, you can now automatically generate a documentation page and README.md with no additional effort. Simply run the following command:
|
||||
|
||||
@ -24,3 +22,9 @@ This will generate a Gradio app that you can upload to spaces providing rich doc
|
||||
- Optional links to GitHub, PyPi, and Hugging Face Spaces.
|
||||
|
||||
A README will also be generated detailing the same information but in a format that is optimised for viewing on GitHub or PyPi!
|
||||
|
||||
Thanks [@pngwn](https://github.com/pngwn)!
|
||||
|
||||
### Features
|
||||
|
||||
- [#7069](https://github.com/gradio-app/gradio/pull/7069) [`07d520c`](https://github.com/gradio-app/gradio/commit/07d520c7a2590eb5544bd0b17f82ea31ecf43e00) - fix versions. Thanks [@pngwn](https://github.com/pngwn)!
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/paramviewer",
|
||||
"version": "0.2.3",
|
||||
"version": "0.3.0",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/radio
|
||||
|
||||
## 0.4.0
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#6933](https://github.com/gradio-app/gradio/pull/6933) [`9cefd2e`](https://github.com/gradio-app/gradio/commit/9cefd2e90a1d0cc4d3e4e953fc5b9b1a7afb68dd) - Refactor examples so they accept data in the same format as is returned by function, rename `.as_example()` to `.process_example()`. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
|
||||
## 0.3.7
|
||||
|
||||
### Patch Changes
|
||||
@ -165,4 +171,4 @@ 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)!
|
||||
- [#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)!
|
||||
- [#5232](https://github.com/gradio-app/gradio/pull/5232) [`c57d4c23`](https://github.com/gradio-app/gradio/commit/c57d4c232a97e03b4671f9e9edc3af456438fe89) - `gr.Radio` and `gr.CheckboxGroup` can now accept different names and values. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
- [#5232](https://github.com/gradio-app/gradio/pull/5232) [`c57d4c23`](https://github.com/gradio-app/gradio/commit/c57d4c232a97e03b4671f9e9edc3af456438fe89) - `gr.Radio` and `gr.CheckboxGroup` can now accept different names and values. Thanks [@abidlabs](https://github.com/abidlabs)!
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/radio",
|
||||
"version": "0.3.7",
|
||||
"version": "0.4.0",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/tabitem
|
||||
|
||||
## 0.2.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#7018](https://github.com/gradio-app/gradio/pull/7018) [`ec28b4e`](https://github.com/gradio-app/gradio/commit/ec28b4e7c47a9233d9e3a725cc9fe8f9044dfa94) - Add `visible` and `interactive` params to `gr.Tab()`. Thanks [@hannahblair](https://github.com/hannahblair)!
|
||||
|
||||
## 0.1.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/tabitem",
|
||||
"version": "0.1.0",
|
||||
"version": "0.2.0",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/tabs
|
||||
|
||||
## 0.2.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#7018](https://github.com/gradio-app/gradio/pull/7018) [`ec28b4e`](https://github.com/gradio-app/gradio/commit/ec28b4e7c47a9233d9e3a725cc9fe8f9044dfa94) - Add `visible` and `interactive` params to `gr.Tab()`. Thanks [@hannahblair](https://github.com/hannahblair)!
|
||||
|
||||
## 0.1.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/tabs",
|
||||
"version": "0.1.0",
|
||||
"version": "0.2.0",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/upload
|
||||
|
||||
## 0.6.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#6982](https://github.com/gradio-app/gradio/pull/6982) [`3f139c7`](https://github.com/gradio-app/gradio/commit/3f139c7c995f749562bb007d2a567bb167669de9) - Fix File drag and drop for specific file_types. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/upload",
|
||||
"version": "0.6.0",
|
||||
"version": "0.6.1",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# @gradio/uploadbutton
|
||||
|
||||
## 0.4.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`3c3cf86`](https://github.com/gradio-app/gradio/commit/3c3cf8618a8cad1ef66a7f96664923d2c9f5e0e2), [`3f139c7`](https://github.com/gradio-app/gradio/commit/3f139c7c995f749562bb007d2a567bb167669de9)]:
|
||||
- @gradio/client@0.10.1
|
||||
- @gradio/upload@0.6.1
|
||||
- @gradio/button@0.2.17
|
||||
|
||||
## 0.4.1
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/uploadbutton",
|
||||
"version": "0.4.1",
|
||||
"version": "0.4.2",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/video
|
||||
|
||||
## 0.4.0
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#6933](https://github.com/gradio-app/gradio/pull/6933) [`9cefd2e`](https://github.com/gradio-app/gradio/commit/9cefd2e90a1d0cc4d3e4e953fc5b9b1a7afb68dd) - Refactor examples so they accept data in the same format as is returned by function, rename `.as_example()` to `.process_example()`. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
- [#7038](https://github.com/gradio-app/gradio/pull/7038) [`6be3c2c`](https://github.com/gradio-app/gradio/commit/6be3c2c47a616c904c8497d1fbef7a851c54d488) - Fix Chatbot custom component template. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
|
||||
|
||||
## 0.3.1
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/video",
|
||||
"version": "0.3.1",
|
||||
"version": "0.4.0",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
2
pnpm-lock.yaml
generated
2
pnpm-lock.yaml
generated
@ -279,7 +279,7 @@ importers:
|
||||
js/_website:
|
||||
dependencies:
|
||||
'@gradio/code':
|
||||
specifier: 0.3.6
|
||||
specifier: 0.3.7
|
||||
version: link:../code
|
||||
'@sindresorhus/slugify':
|
||||
specifier: ^2.2.0
|
||||
|
@ -2,7 +2,7 @@ aiofiles>=22.0,<24.0
|
||||
altair>=4.2.0,<6.0
|
||||
fastapi
|
||||
ffmpy
|
||||
gradio_client==0.8.0
|
||||
gradio_client==0.8.1
|
||||
httpx
|
||||
huggingface_hub>=0.19.3
|
||||
importlib_resources>=1.3,<7.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user