mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
chore: update versions (#9908)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
08f4b8b000
commit
4d520a8a7b
@ -1,5 +0,0 @@
|
||||
---
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:Clearer error message in CheckboxGroup's preprocess function
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/dataframe": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Allow dataframe column content to wrap
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/datetime": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Allow datetime value to be null
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:SSR Safari Fix
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/chatbot": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Add `allow_file_downloads` param to allow downloading image/video/audio media in chatbot
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"gradio": patch
|
||||
"gradio_client": patch
|
||||
---
|
||||
|
||||
fix:fix: Fix filename stripping to preserve extensions
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
"@gradio/file": patch
|
||||
"@gradio/multimodaltextbox": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Hide upload button after upload when `file_count="single"`
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/client": minor
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:Allow settings custom headers in js client
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:Clearer error message in Dropdown's and Radio's preprocess function
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:Fix typo in Exception raised by base.py
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
"@gradio/checkboxgroup": patch
|
||||
"@gradio/radio": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Ensure radio radius is consistent with checkbox radius
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/multimodaltextbox": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Ensure dropped files are validated in MultimediaTextbox
|
@ -1,12 +0,0 @@
|
||||
---
|
||||
"@gradio/client": minor
|
||||
"@gradio/core": minor
|
||||
"@gradio/browserstate": minor
|
||||
"@gradio/utils": minor
|
||||
"@self/app": minor
|
||||
"@self/component-test": minor
|
||||
"@self/spa": minor
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:Add ability to read and write from LocalStorage
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
feat:Remember token locally with `gr.load()`
|
22
CHANGELOG.md
22
CHANGELOG.md
@ -1,5 +1,27 @@
|
||||
# gradio
|
||||
|
||||
## 5.6.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#9906](https://github.com/gradio-app/gradio/pull/9906) [`eafe22c`](https://github.com/gradio-app/gradio/commit/eafe22cd9404d536b03d3fa80003acea78599d49) - Clearer error message in CheckboxGroup's preprocess function. Thanks @muhammadyaseen!
|
||||
- [#9930](https://github.com/gradio-app/gradio/pull/9930) [`eae345e`](https://github.com/gradio-app/gradio/commit/eae345e5fde39aea220b57c6a954cd7d72ff32d5) - Allow settings custom headers in js client. Thanks @elgiano!
|
||||
- [#9921](https://github.com/gradio-app/gradio/pull/9921) [`a70ba5e`](https://github.com/gradio-app/gradio/commit/a70ba5e0f01f0c376da0d4e45634bc967f5299f4) - Clearer error message in Dropdown's and Radio's preprocess function. Thanks @muhammadyaseen!
|
||||
- [#9933](https://github.com/gradio-app/gradio/pull/9933) [`66375ac`](https://github.com/gradio-app/gradio/commit/66375acb5c0a3a8eecc4cfa00701b14f21f3ed68) - Fix typo in Exception raised by base.py. Thanks @meg-huggingface!
|
||||
- [#9950](https://github.com/gradio-app/gradio/pull/9950) [`fc06fe4`](https://github.com/gradio-app/gradio/commit/fc06fe41f015678a0545f4e5c99f6ae2704f0031) - Add ability to read and write from LocalStorage. Thanks @abidlabs!
|
||||
- [#9966](https://github.com/gradio-app/gradio/pull/9966) [`da6f191`](https://github.com/gradio-app/gradio/commit/da6f1915547b03601d1808b28e57cca62308df71) - Remember token locally with `gr.load()`. Thanks @abidlabs!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#9949](https://github.com/gradio-app/gradio/pull/9949) [`cfb62bf`](https://github.com/gradio-app/gradio/commit/cfb62bfdb52d88295f27287f788fca977e37ae6d) - Allow dataframe column content to wrap. Thanks @hannahblair!
|
||||
- [#9897](https://github.com/gradio-app/gradio/pull/9897) [`c0cf80b`](https://github.com/gradio-app/gradio/commit/c0cf80bddd99ad0f836e618cc3d2b13e73cb5611) - Allow datetime value to be null. Thanks @hannahblair!
|
||||
- [#9958](https://github.com/gradio-app/gradio/pull/9958) [`75ad3e3`](https://github.com/gradio-app/gradio/commit/75ad3e341978a521df3d11d4f97d6e55f784c9a1) - SSR Safari Fix. Thanks @dawoodkhan82!
|
||||
- [#9905](https://github.com/gradio-app/gradio/pull/9905) [`08f4b8b`](https://github.com/gradio-app/gradio/commit/08f4b8b000702456e04fac70961a4fbe0058f11c) - Add `allow_file_downloads` param to allow downloading image/video/audio media in chatbot. Thanks @hannahblair!
|
||||
- [#9913](https://github.com/gradio-app/gradio/pull/9913) [`d81f430`](https://github.com/gradio-app/gradio/commit/d81f430fd50546001b76c0ae5fded32c6d3093f7) - fix: Fix filename stripping to preserve extensions. Thanks @TakaSoap!
|
||||
- [#9946](https://github.com/gradio-app/gradio/pull/9946) [`a966e9f`](https://github.com/gradio-app/gradio/commit/a966e9f753af25eb9d813dfdbce39be6f3014d82) - Hide upload button after upload when `file_count="single"`. Thanks @abidlabs!
|
||||
- [#9901](https://github.com/gradio-app/gradio/pull/9901) [`74b4ff0`](https://github.com/gradio-app/gradio/commit/74b4ff0e61a2a32e1cd5e3354d3002b369c7ad83) - Ensure radio radius is consistent with checkbox radius. Thanks @hannahblair!
|
||||
- [#9904](https://github.com/gradio-app/gradio/pull/9904) [`f523c91`](https://github.com/gradio-app/gradio/commit/f523c915d3732859ff4a8019a82cb597b5208ae2) - Ensure dropped files are validated in MultimediaTextbox. Thanks @hannahblair!
|
||||
|
||||
## 5.5.0
|
||||
|
||||
### Features
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/client
|
||||
|
||||
## 1.8.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#9930](https://github.com/gradio-app/gradio/pull/9930) [`eae345e`](https://github.com/gradio-app/gradio/commit/eae345e5fde39aea220b57c6a954cd7d72ff32d5) - Allow settings custom headers in js client. Thanks @elgiano!
|
||||
- [#9950](https://github.com/gradio-app/gradio/pull/9950) [`fc06fe4`](https://github.com/gradio-app/gradio/commit/fc06fe41f015678a0545f4e5c99f6ae2704f0031) - Add ability to read and write from LocalStorage. Thanks @abidlabs!
|
||||
|
||||
## 1.7.1
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/client",
|
||||
"version": "1.7.1",
|
||||
"version": "1.8.0",
|
||||
"description": "Gradio API client",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# gradio_client
|
||||
|
||||
## 1.4.3
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#9913](https://github.com/gradio-app/gradio/pull/9913) [`d81f430`](https://github.com/gradio-app/gradio/commit/d81f430fd50546001b76c0ae5fded32c6d3093f7) - fix: Fix filename stripping to preserve extensions. Thanks @TakaSoap!
|
||||
|
||||
## 1.4.2
|
||||
|
||||
### Fixes
|
||||
|
@ -1,5 +1,11 @@
|
||||
# gradio_client
|
||||
|
||||
## 1.4.3
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#9913](https://github.com/gradio-app/gradio/pull/9913) [`d81f430`](https://github.com/gradio-app/gradio/commit/d81f430fd50546001b76c0ae5fded32c6d3093f7) - fix: Fix filename stripping to preserve extensions. Thanks @TakaSoap!
|
||||
|
||||
## 1.4.2
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradio_client",
|
||||
"version": "1.4.2",
|
||||
"version": "1.4.3",
|
||||
"description": "",
|
||||
"python": "true",
|
||||
"main_changeset": true,
|
||||
|
@ -1,5 +1,27 @@
|
||||
# gradio
|
||||
|
||||
## 5.6.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#9906](https://github.com/gradio-app/gradio/pull/9906) [`eafe22c`](https://github.com/gradio-app/gradio/commit/eafe22cd9404d536b03d3fa80003acea78599d49) - Clearer error message in CheckboxGroup's preprocess function. Thanks @muhammadyaseen!
|
||||
- [#9930](https://github.com/gradio-app/gradio/pull/9930) [`eae345e`](https://github.com/gradio-app/gradio/commit/eae345e5fde39aea220b57c6a954cd7d72ff32d5) - Allow settings custom headers in js client. Thanks @elgiano!
|
||||
- [#9921](https://github.com/gradio-app/gradio/pull/9921) [`a70ba5e`](https://github.com/gradio-app/gradio/commit/a70ba5e0f01f0c376da0d4e45634bc967f5299f4) - Clearer error message in Dropdown's and Radio's preprocess function. Thanks @muhammadyaseen!
|
||||
- [#9933](https://github.com/gradio-app/gradio/pull/9933) [`66375ac`](https://github.com/gradio-app/gradio/commit/66375acb5c0a3a8eecc4cfa00701b14f21f3ed68) - Fix typo in Exception raised by base.py. Thanks @meg-huggingface!
|
||||
- [#9950](https://github.com/gradio-app/gradio/pull/9950) [`fc06fe4`](https://github.com/gradio-app/gradio/commit/fc06fe41f015678a0545f4e5c99f6ae2704f0031) - Add ability to read and write from LocalStorage. Thanks @abidlabs!
|
||||
- [#9966](https://github.com/gradio-app/gradio/pull/9966) [`da6f191`](https://github.com/gradio-app/gradio/commit/da6f1915547b03601d1808b28e57cca62308df71) - Remember token locally with `gr.load()`. Thanks @abidlabs!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#9949](https://github.com/gradio-app/gradio/pull/9949) [`cfb62bf`](https://github.com/gradio-app/gradio/commit/cfb62bfdb52d88295f27287f788fca977e37ae6d) - Allow dataframe column content to wrap. Thanks @hannahblair!
|
||||
- [#9897](https://github.com/gradio-app/gradio/pull/9897) [`c0cf80b`](https://github.com/gradio-app/gradio/commit/c0cf80bddd99ad0f836e618cc3d2b13e73cb5611) - Allow datetime value to be null. Thanks @hannahblair!
|
||||
- [#9958](https://github.com/gradio-app/gradio/pull/9958) [`75ad3e3`](https://github.com/gradio-app/gradio/commit/75ad3e341978a521df3d11d4f97d6e55f784c9a1) - SSR Safari Fix. Thanks @dawoodkhan82!
|
||||
- [#9905](https://github.com/gradio-app/gradio/pull/9905) [`08f4b8b`](https://github.com/gradio-app/gradio/commit/08f4b8b000702456e04fac70961a4fbe0058f11c) - Add `allow_file_downloads` param to allow downloading image/video/audio media in chatbot. Thanks @hannahblair!
|
||||
- [#9913](https://github.com/gradio-app/gradio/pull/9913) [`d81f430`](https://github.com/gradio-app/gradio/commit/d81f430fd50546001b76c0ae5fded32c6d3093f7) - fix: Fix filename stripping to preserve extensions. Thanks @TakaSoap!
|
||||
- [#9946](https://github.com/gradio-app/gradio/pull/9946) [`a966e9f`](https://github.com/gradio-app/gradio/commit/a966e9f753af25eb9d813dfdbce39be6f3014d82) - Hide upload button after upload when `file_count="single"`. Thanks @abidlabs!
|
||||
- [#9901](https://github.com/gradio-app/gradio/pull/9901) [`74b4ff0`](https://github.com/gradio-app/gradio/commit/74b4ff0e61a2a32e1cd5e3354d3002b369c7ad83) - Ensure radio radius is consistent with checkbox radius. Thanks @hannahblair!
|
||||
- [#9904](https://github.com/gradio-app/gradio/pull/9904) [`f523c91`](https://github.com/gradio-app/gradio/commit/f523c915d3732859ff4a8019a82cb597b5208ae2) - Ensure dropped files are validated in MultimediaTextbox. Thanks @hannahblair!
|
||||
|
||||
## 5.5.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradio",
|
||||
"version": "5.5.0",
|
||||
"version": "5.6.0",
|
||||
"description": "",
|
||||
"python": "true"
|
||||
}
|
@ -4,6 +4,12 @@
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/client@1.8.0
|
||||
|
||||
## 0.0.1
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/client@1.7.1
|
||||
|
||||
## 0.0.1
|
||||
|
@ -1,5 +1,14 @@
|
||||
# website
|
||||
|
||||
## 0.42.1
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/code@0.10.8
|
||||
- @gradio/paramviewer@0.5.7
|
||||
- @gradio/tabitem@0.3.4
|
||||
- @gradio/tabs@0.3.4
|
||||
|
||||
## 0.42.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "website",
|
||||
"version": "0.42.0",
|
||||
"version": "0.42.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "pip install boto3 && python generate_jsons/generate.py && vite dev",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# @gradio/accordion
|
||||
|
||||
## 0.5.1
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/statustracker@0.9.5
|
||||
- @gradio/column@0.2.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/accordion",
|
||||
"version": "0.5.0",
|
||||
"version": "0.5.1",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# @gradio/annotatedimage
|
||||
|
||||
## 0.8.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/upload@0.14.1
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.8.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/annotatedimage",
|
||||
"version": "0.8.7",
|
||||
"version": "0.8.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# @self/app
|
||||
|
||||
## 1.44.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#9950](https://github.com/gradio-app/gradio/pull/9950) [`fc06fe4`](https://github.com/gradio-app/gradio/commit/fc06fe41f015678a0545f4e5c99f6ae2704f0031) - Add ability to read and write from LocalStorage. Thanks @abidlabs!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/core@0.4.0
|
||||
|
||||
## 1.43.1
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@self/app",
|
||||
"version": "1.43.1",
|
||||
"version": "1.44.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite dev",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/atoms
|
||||
|
||||
## 0.11.1
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/utils@0.8.0
|
||||
|
||||
## 0.11.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/atoms",
|
||||
"version": "0.11.0",
|
||||
"version": "0.11.1",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# @gradio/audio
|
||||
|
||||
## 0.14.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/button@0.3.7
|
||||
- @gradio/upload@0.14.1
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.14.7
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/audio",
|
||||
"version": "0.14.7",
|
||||
"version": "0.14.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/box
|
||||
|
||||
## 0.2.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
|
||||
## 0.2.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/box",
|
||||
"version": "0.2.5",
|
||||
"version": "0.2.6",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
7
js/browserstate/CHANGELOG.md
Normal file
7
js/browserstate/CHANGELOG.md
Normal file
@ -0,0 +1,7 @@
|
||||
# @gradio/browserstate
|
||||
|
||||
## 0.2.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#9950](https://github.com/gradio-app/gradio/pull/9950) [`fc06fe4`](https://github.com/gradio-app/gradio/commit/fc06fe41f015678a0545f4e5c99f6ae2704f0031) - Add ability to read and write from LocalStorage. Thanks @abidlabs!
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/browserstate",
|
||||
"version": "0.1.2",
|
||||
"version": "0.2.0",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/button
|
||||
|
||||
## 0.3.7
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/upload@0.14.1
|
||||
|
||||
## 0.3.6
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/button",
|
||||
"version": "0.3.6",
|
||||
"version": "0.3.7",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,23 @@
|
||||
# @gradio/chatbot
|
||||
|
||||
## 0.16.3
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#9905](https://github.com/gradio-app/gradio/pull/9905) [`08f4b8b`](https://github.com/gradio-app/gradio/commit/08f4b8b000702456e04fac70961a4fbe0058f11c) - Add `allow_file_downloads` param to allow downloading image/video/audio media in chatbot. Thanks @hannahblair!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/video@0.11.8
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/upload@0.14.1
|
||||
- @gradio/statustracker@0.9.5
|
||||
- @gradio/gallery@0.13.8
|
||||
- @gradio/plot@0.9.2
|
||||
- @gradio/image@0.16.8
|
||||
|
||||
## 0.16.2
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/chatbot",
|
||||
"version": "0.16.2",
|
||||
"version": "0.16.3",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/checkbox
|
||||
|
||||
## 0.4.7
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.4.6
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/checkbox",
|
||||
"version": "0.4.6",
|
||||
"version": "0.4.7",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# @gradio/checkboxgroup
|
||||
|
||||
## 0.6.7
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#9901](https://github.com/gradio-app/gradio/pull/9901) [`74b4ff0`](https://github.com/gradio-app/gradio/commit/74b4ff0e61a2a32e1cd5e3354d3002b369c7ad83) - Ensure radio radius is consistent with checkbox radius. Thanks @hannahblair!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.6.6
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/checkboxgroup",
|
||||
"version": "0.6.6",
|
||||
"version": "0.6.7",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# @gradio/code
|
||||
|
||||
## 0.10.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/upload@0.14.1
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.10.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/code",
|
||||
"version": "0.10.7",
|
||||
"version": "0.10.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/colorpicker
|
||||
|
||||
## 0.4.7
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.4.6
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/colorpicker",
|
||||
"version": "0.4.6",
|
||||
"version": "0.4.7",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -4,6 +4,13 @@
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.2.0
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.9.4
|
||||
|
||||
## 0.2.0
|
||||
|
@ -1,5 +1,15 @@
|
||||
# @self/component-test
|
||||
|
||||
## 0.4.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#9950](https://github.com/gradio-app/gradio/pull/9950) [`fc06fe4`](https://github.com/gradio-app/gradio/commit/fc06fe41f015678a0545f4e5c99f6ae2704f0031) - Add ability to read and write from LocalStorage. Thanks @abidlabs!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/video@0.11.8
|
||||
|
||||
## 0.3.1
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@self/component-test",
|
||||
"version": "0.3.1",
|
||||
"version": "0.4.0",
|
||||
"scripts": {
|
||||
"dev": "vite dev",
|
||||
"build": "vite build",
|
||||
|
@ -1,5 +1,32 @@
|
||||
# @gradio/core
|
||||
|
||||
## 0.4.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#9950](https://github.com/gradio-app/gradio/pull/9950) [`fc06fe4`](https://github.com/gradio-app/gradio/commit/fc06fe41f015678a0545f4e5c99f6ae2704f0031) - Add ability to read and write from LocalStorage. Thanks @abidlabs!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/video@0.11.8
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/code@0.10.8
|
||||
- @gradio/paramviewer@0.5.7
|
||||
- @gradio/tabitem@0.3.4
|
||||
- @gradio/tabs@0.3.4
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/button@0.3.7
|
||||
- @gradio/upload@0.14.1
|
||||
- @gradio/statustracker@0.9.5
|
||||
- @gradio/gallery@0.13.8
|
||||
- @gradio/plot@0.9.2
|
||||
- @gradio/image@0.16.8
|
||||
- @gradio/file@0.11.1
|
||||
- @gradio/checkbox@0.4.7
|
||||
- @gradio/textbox@0.8.6
|
||||
- @gradio/column@0.2.0
|
||||
|
||||
## 0.3.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/core",
|
||||
"version": "0.3.0",
|
||||
"version": "0.4.0",
|
||||
"type": "module",
|
||||
"devDependencies": {
|
||||
"@gradio/accordion": "workspace:^",
|
||||
|
@ -1,5 +1,20 @@
|
||||
# @gradio/dataframe
|
||||
|
||||
## 0.12.3
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#9949](https://github.com/gradio-app/gradio/pull/9949) [`cfb62bf`](https://github.com/gradio-app/gradio/commit/cfb62bfdb52d88295f27287f788fca977e37ae6d) - Allow dataframe column content to wrap. Thanks @hannahblair!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/button@0.3.7
|
||||
- @gradio/upload@0.14.1
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.12.2
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/dataframe",
|
||||
"version": "0.12.2",
|
||||
"version": "0.12.3",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# @gradio/dataset
|
||||
|
||||
## 0.3.9
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/upload@0.14.1
|
||||
- @gradio/textbox@0.8.6
|
||||
|
||||
## 0.3.8
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/dataset",
|
||||
"version": "0.3.8",
|
||||
"version": "0.3.9",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# @gradio/datetime
|
||||
|
||||
## 0.2.7
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#9897](https://github.com/gradio-app/gradio/pull/9897) [`c0cf80b`](https://github.com/gradio-app/gradio/commit/c0cf80bddd99ad0f836e618cc3d2b13e73cb5611) - Allow datetime value to be null. Thanks @hannahblair!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.2.6
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/datetime",
|
||||
"version": "0.2.6",
|
||||
"version": "0.2.7",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/downloadbutton
|
||||
|
||||
## 0.2.7
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/button@0.3.7
|
||||
|
||||
## 0.2.6
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/downloadbutton",
|
||||
"version": "0.2.6",
|
||||
"version": "0.2.7",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/dropdown
|
||||
|
||||
## 0.9.5
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.9.4
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/dropdown",
|
||||
"version": "0.9.4",
|
||||
"version": "0.9.5",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/fallback
|
||||
|
||||
## 0.4.7
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.4.6
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/fallback",
|
||||
"version": "0.4.6",
|
||||
"version": "0.4.7",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,19 @@
|
||||
# @gradio/file
|
||||
|
||||
## 0.11.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#9946](https://github.com/gradio-app/gradio/pull/9946) [`a966e9f`](https://github.com/gradio-app/gradio/commit/a966e9f753af25eb9d813dfdbce39be6f3014d82) - Hide upload button after upload when `file_count="single"`. Thanks @abidlabs!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/upload@0.14.1
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.11.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/file",
|
||||
"version": "0.11.0",
|
||||
"version": "0.11.1",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# @gradio/fileexplorer
|
||||
|
||||
## 0.5.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/upload@0.14.1
|
||||
- @gradio/statustracker@0.9.5
|
||||
- @gradio/file@0.11.1
|
||||
- @gradio/checkbox@0.4.7
|
||||
|
||||
## 0.5.7
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/fileexplorer",
|
||||
"version": "0.5.7",
|
||||
"version": "0.5.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/form
|
||||
|
||||
## 0.2.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
|
||||
## 0.2.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/form",
|
||||
"version": "0.2.5",
|
||||
"version": "0.2.6",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,18 @@
|
||||
# @gradio/gallery
|
||||
|
||||
## 0.13.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/video@0.11.8
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/upload@0.14.1
|
||||
- @gradio/statustracker@0.9.5
|
||||
- @gradio/image@0.16.8
|
||||
- @gradio/file@0.11.1
|
||||
|
||||
## 0.13.7
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/gallery",
|
||||
"version": "0.13.7",
|
||||
"version": "0.13.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/highlightedtext
|
||||
|
||||
## 0.8.7
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.8.6
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/highlightedtext",
|
||||
"version": "0.8.6",
|
||||
"version": "0.8.7",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/html
|
||||
|
||||
## 0.4.7
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.4.6
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/html",
|
||||
"version": "0.4.6",
|
||||
"version": "0.4.7",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# @gradio/image
|
||||
|
||||
## 0.16.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/upload@0.14.1
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.16.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/image",
|
||||
"version": "0.16.7",
|
||||
"version": "0.16.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# @gradio/imageeditor
|
||||
|
||||
## 0.11.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/upload@0.14.1
|
||||
- @gradio/statustracker@0.9.5
|
||||
- @gradio/image@0.16.8
|
||||
|
||||
## 0.11.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/imageeditor",
|
||||
"version": "0.11.7",
|
||||
"version": "0.11.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/json
|
||||
|
||||
## 0.5.7
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.5.6
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/json",
|
||||
"version": "0.5.6",
|
||||
"version": "0.5.7",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/label
|
||||
|
||||
## 0.4.7
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.4.6
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/label",
|
||||
"version": "0.4.6",
|
||||
"version": "0.4.7",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/lite
|
||||
|
||||
## 5.6.0
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/core@0.4.0
|
||||
|
||||
## 5.5.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/lite",
|
||||
"version": "5.5.0",
|
||||
"version": "5.6.0",
|
||||
"description": "Serverless Gradio",
|
||||
"type": "module",
|
||||
"main": "dist/lite.js",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/markdown
|
||||
|
||||
## 0.11.3
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.11.2
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/markdown",
|
||||
"version": "0.11.2",
|
||||
"version": "0.11.3",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# @gradio/model3d
|
||||
|
||||
## 0.13.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/upload@0.14.1
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.13.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/model3d",
|
||||
"version": "0.13.7",
|
||||
"version": "0.13.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,22 @@
|
||||
# @gradio/multimodaltextbox
|
||||
|
||||
## 0.7.6
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#9946](https://github.com/gradio-app/gradio/pull/9946) [`a966e9f`](https://github.com/gradio-app/gradio/commit/a966e9f753af25eb9d813dfdbce39be6f3014d82) - Hide upload button after upload when `file_count="single"`. Thanks @abidlabs!
|
||||
- [#9904](https://github.com/gradio-app/gradio/pull/9904) [`f523c91`](https://github.com/gradio-app/gradio/commit/f523c915d3732859ff4a8019a82cb597b5208ae2) - Ensure dropped files are validated in MultimediaTextbox. Thanks @hannahblair!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/video@0.11.8
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/client@1.8.0
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/upload@0.14.1
|
||||
- @gradio/statustracker@0.9.5
|
||||
- @gradio/image@0.16.8
|
||||
|
||||
## 0.7.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/multimodaltextbox",
|
||||
"version": "0.7.5",
|
||||
"version": "0.7.6",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/nativeplot
|
||||
|
||||
## 0.5.1
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/nativeplot",
|
||||
"version": "0.5.0",
|
||||
"version": "0.5.1",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/number
|
||||
|
||||
## 0.5.7
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/atoms@0.11.1
|
||||
- @gradio/utils@0.8.0
|
||||
- @gradio/statustracker@0.9.5
|
||||
|
||||
## 0.5.6
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/number",
|
||||
"version": "0.5.6",
|
||||
"version": "0.5.7",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user