chore: update versions (#4999)

* chore: update versions

* undo diff

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: freddyaboulton <alfonsoboulton@gmail.com>
This commit is contained in:
pngwn 2023-07-26 22:10:24 +01:00 committed by GitHub
parent 46e4ef67d2
commit 861d752a83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
66 changed files with 4432 additions and 251 deletions

View File

@ -1,7 +0,0 @@
---
"@gradio/app": minor
"@gradio/gallery": minor
"gradio": minor
---
feat:Implement left and right click in `Gallery` component and show implicit images in `Gallery` grid

View File

@ -1,37 +0,0 @@
---
"gradio": minor
"gradio_client": minor
---
highlight:
#### Create Discord Bots from Gradio Apps 🤖
We're excited to announce that Gradio can now automatically create a discord bot from any `gr.ChatInterface` app.
It's as easy as importing `gradio_client`, connecting to the app, and calling `deploy_discord`!
*🦙 Turning Llama 2 70b into a discord bot 🦙*
```python
import gradio_client as grc
grc.Client("ysharma/Explore_llamav2_with_TGI").deploy_discord(to_id="llama2-70b-discord-bot")
```
<img src="https://gradio-builds.s3.amazonaws.com/demo-files/discordbots/guide/llama_chat.gif">
#### Getting started with template spaces
To help get you started, we have created an organization on Hugging Face called [gradio-discord-bots](https://huggingface.co/gradio-discord-bots) with template spaces you can use to turn state of the art LLMs powered by Gradio to discord bots.
Currently we have template spaces for:
* [Llama-2-70b-chat-hf](https://huggingface.co/spaces/gradio-discord-bots/Llama-2-70b-chat-hf) powered by a FREE Hugging Face Inference Endpoint!
* [Llama-2-13b-chat-hf](https://huggingface.co/spaces/gradio-discord-bots/Llama-2-13b-chat-hf) powered by Hugging Face Inference Endpoints.
* [Llama-2-13b-chat-hf](https://huggingface.co/spaces/gradio-discord-bots/llama-2-13b-chat-transformers) powered by Hugging Face transformers.
* [falcon-7b-instruct](https://huggingface.co/spaces/gradio-discord-bots/falcon-7b-instruct) powered by Hugging Face Inference Endpoints.
* [gpt-3.5-turbo](https://huggingface.co/spaces/gradio-discord-bots/gpt-35-turbo), powered by openai. Requires an OpenAI key.
But once again, you can deploy ANY `gr.ChatInterface` app exposed on the internet! So don't hesitate to try it on your own Chatbots.
❗️ Additional Note ❗️: Technically, any gradio app that exposes an api route that takes in a single string and outputs a single string can be deployed to discord. But `gr.ChatInterface` apps naturally lend themselves to discord's chat functionality so we suggest you start with those.

View File

@ -1,6 +0,0 @@
---
"@gradio/theme": patch
"gradio": patch
---
fix:Add CSS resets and specifiers to play nice with HF blog

View File

@ -1,5 +0,0 @@
---
"website": patch
---
feat:Correctly render changelog on website after new formatting

View File

@ -1,5 +0,0 @@
---
"website": patch
---
fix:Make sure tags aren't rendered inside a guide

View File

@ -1,7 +0,0 @@
---
"@gradio/app": minor
"@gradio/audio": minor
"gradio": minor
---
feat: Bringing back the "Add download button for audio" PR by [@leuryr](https://github.com/leuryr).

View File

@ -1,7 +0,0 @@
---
"@gradio/app": minor
"@gradio/image": minor
"gradio": minor
---
feat:Allow setting sketch color default

View File

@ -1,5 +0,0 @@
---
"gradio": minor
---
feat:Adds `additional_inputs` to `gr.ChatInterface`

View File

@ -1,5 +1,52 @@
# gradio
## 3.39.0
### Highlights
#### Create Discord Bots from Gradio Apps 🤖 ([#4960](https://github.com/gradio-app/gradio/pull/4960) [`46e4ef67`](https://github.com/gradio-app/gradio/commit/46e4ef67d287dd68a91473b73172b29cbad064bc))
We're excited to announce that Gradio can now automatically create a discord bot from any `gr.ChatInterface` app.
It's as easy as importing `gradio_client`, connecting to the app, and calling `deploy_discord`!
*🦙 Turning Llama 2 70b into a discord bot 🦙*
```python
import gradio_client as grc
grc.Client("ysharma/Explore_llamav2_with_TGI").deploy_discord(to_id="llama2-70b-discord-bot")
```
<img src="https://gradio-builds.s3.amazonaws.com/demo-files/discordbots/guide/llama_chat.gif">
#### Getting started with template spaces
To help get you started, we have created an organization on Hugging Face called [gradio-discord-bots](https://huggingface.co/gradio-discord-bots) with template spaces you can use to turn state of the art LLMs powered by Gradio to discord bots.
Currently we have template spaces for:
* [Llama-2-70b-chat-hf](https://huggingface.co/spaces/gradio-discord-bots/Llama-2-70b-chat-hf) powered by a FREE Hugging Face Inference Endpoint!
* [Llama-2-13b-chat-hf](https://huggingface.co/spaces/gradio-discord-bots/Llama-2-13b-chat-hf) powered by Hugging Face Inference Endpoints.
* [Llama-2-13b-chat-hf](https://huggingface.co/spaces/gradio-discord-bots/llama-2-13b-chat-transformers) powered by Hugging Face transformers.
* [falcon-7b-instruct](https://huggingface.co/spaces/gradio-discord-bots/falcon-7b-instruct) powered by Hugging Face Inference Endpoints.
* [gpt-3.5-turbo](https://huggingface.co/spaces/gradio-discord-bots/gpt-35-turbo), powered by openai. Requires an OpenAI key.
But once again, you can deploy ANY `gr.ChatInterface` app exposed on the internet! So don't hesitate to try it on your own Chatbots.
❗️ Additional Note ❗️: Technically, any gradio app that exposes an api route that takes in a single string and outputs a single string can be deployed to discord. But `gr.ChatInterface` apps naturally lend themselves to discord's chat functionality so we suggest you start with those.
Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
### Features
- [#4995](https://github.com/gradio-app/gradio/pull/4995) [`3f8c210b`](https://github.com/gradio-app/gradio/commit/3f8c210b01ef1ceaaf8ee73be4bf246b5b745bbf) - Implement left and right click in `Gallery` component and show implicit images in `Gallery` grid. Thanks [@hannahblair](https://github.com/hannahblair)!
- [#4993](https://github.com/gradio-app/gradio/pull/4993) [`dc07a9f9`](https://github.com/gradio-app/gradio/commit/dc07a9f947de44b419d8384987a02dcf94977851) - Bringing back the "Add download button for audio" PR by [@leuryr](https://github.com/leuryr). Thanks [@abidlabs](https://github.com/abidlabs)!
- [#4979](https://github.com/gradio-app/gradio/pull/4979) [`44ac8ad0`](https://github.com/gradio-app/gradio/commit/44ac8ad08d82ea12c503dde5c78f999eb0452de2) - Allow setting sketch color default. Thanks [@aliabid94](https://github.com/aliabid94)!
- [#4985](https://github.com/gradio-app/gradio/pull/4985) [`b74f8453`](https://github.com/gradio-app/gradio/commit/b74f8453034328f0e42da8e41785f5eb039b45d7) - Adds `additional_inputs` to `gr.ChatInterface`. Thanks [@abidlabs](https://github.com/abidlabs)!
### Fixes
- [#4997](https://github.com/gradio-app/gradio/pull/4997) [`41c83070`](https://github.com/gradio-app/gradio/commit/41c83070b01632084e7d29123048a96c1e261407) - Add CSS resets and specifiers to play nice with HF blog. Thanks [@aliabid94](https://github.com/aliabid94)!
## 3.38
### New Features:

View File

@ -1,5 +1,41 @@
# gradio_client
## 0.3.0
### Highlights
#### Create Discord Bots from Gradio Apps 🤖 ([#4960](https://github.com/gradio-app/gradio/pull/4960) [`46e4ef67`](https://github.com/gradio-app/gradio/commit/46e4ef67d287dd68a91473b73172b29cbad064bc))
We're excited to announce that Gradio can now automatically create a discord bot from any `gr.ChatInterface` app.
It's as easy as importing `gradio_client`, connecting to the app, and calling `deploy_discord`!
*🦙 Turning Llama 2 70b into a discord bot 🦙*
```python
import gradio_client as grc
grc.Client("ysharma/Explore_llamav2_with_TGI").deploy_discord(to_id="llama2-70b-discord-bot")
```
<img src="https://gradio-builds.s3.amazonaws.com/demo-files/discordbots/guide/llama_chat.gif">
#### Getting started with template spaces
To help get you started, we have created an organization on Hugging Face called [gradio-discord-bots](https://huggingface.co/gradio-discord-bots) with template spaces you can use to turn state of the art LLMs powered by Gradio to discord bots.
Currently we have template spaces for:
* [Llama-2-70b-chat-hf](https://huggingface.co/spaces/gradio-discord-bots/Llama-2-70b-chat-hf) powered by a FREE Hugging Face Inference Endpoint!
* [Llama-2-13b-chat-hf](https://huggingface.co/spaces/gradio-discord-bots/Llama-2-13b-chat-hf) powered by Hugging Face Inference Endpoints.
* [Llama-2-13b-chat-hf](https://huggingface.co/spaces/gradio-discord-bots/llama-2-13b-chat-transformers) powered by Hugging Face transformers.
* [falcon-7b-instruct](https://huggingface.co/spaces/gradio-discord-bots/falcon-7b-instruct) powered by Hugging Face Inference Endpoints.
* [gpt-3.5-turbo](https://huggingface.co/spaces/gradio-discord-bots/gpt-35-turbo), powered by openai. Requires an OpenAI key.
But once again, you can deploy ANY `gr.ChatInterface` app exposed on the internet! So don't hesitate to try it on your own Chatbots.
❗️ Additional Note ❗️: Technically, any gradio app that exposes an api route that takes in a single string and outputs a single string can be deployed to discord. But `gr.ChatInterface` apps naturally lend themselves to discord's chat functionality so we suggest you start with those.
Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
### New Features:
- Endpoints that return layout components are now properly handled in the `submit` and `view_api` methods. Output layout components are not returned by the API but all other components are (excluding `gr.State`). By [@freddyaboulton](https://github.com/freddyaboulton) in [PR 4871](https://github.com/gradio-app/gradio/pull/4871)

View File

@ -0,0 +1,336 @@
# gradio_client
## 0.3.0
### Highlights
#### Create Discord Bots from Gradio Apps 🤖 ([#4960](https://github.com/gradio-app/gradio/pull/4960) [`46e4ef67`](https://github.com/gradio-app/gradio/commit/46e4ef67d287dd68a91473b73172b29cbad064bc))
We're excited to announce that Gradio can now automatically create a discord bot from any `gr.ChatInterface` app.
It's as easy as importing `gradio_client`, connecting to the app, and calling `deploy_discord`!
*🦙 Turning Llama 2 70b into a discord bot 🦙*
```python
import gradio_client as grc
grc.Client("ysharma/Explore_llamav2_with_TGI").deploy_discord(to_id="llama2-70b-discord-bot")
```
<img src="https://gradio-builds.s3.amazonaws.com/demo-files/discordbots/guide/llama_chat.gif">
#### Getting started with template spaces
To help get you started, we have created an organization on Hugging Face called [gradio-discord-bots](https://huggingface.co/gradio-discord-bots) with template spaces you can use to turn state of the art LLMs powered by Gradio to discord bots.
Currently we have template spaces for:
* [Llama-2-70b-chat-hf](https://huggingface.co/spaces/gradio-discord-bots/Llama-2-70b-chat-hf) powered by a FREE Hugging Face Inference Endpoint!
* [Llama-2-13b-chat-hf](https://huggingface.co/spaces/gradio-discord-bots/Llama-2-13b-chat-hf) powered by Hugging Face Inference Endpoints.
* [Llama-2-13b-chat-hf](https://huggingface.co/spaces/gradio-discord-bots/llama-2-13b-chat-transformers) powered by Hugging Face transformers.
* [falcon-7b-instruct](https://huggingface.co/spaces/gradio-discord-bots/falcon-7b-instruct) powered by Hugging Face Inference Endpoints.
* [gpt-3.5-turbo](https://huggingface.co/spaces/gradio-discord-bots/gpt-35-turbo), powered by openai. Requires an OpenAI key.
But once again, you can deploy ANY `gr.ChatInterface` app exposed on the internet! So don't hesitate to try it on your own Chatbots.
❗️ Additional Note ❗️: Technically, any gradio app that exposes an api route that takes in a single string and outputs a single string can be deployed to discord. But `gr.ChatInterface` apps naturally lend themselves to discord's chat functionality so we suggest you start with those.
Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
### New Features:
- Endpoints that return layout components are now properly handled in the `submit` and `view_api` methods. Output layout components are not returned by the API but all other components are (excluding `gr.State`). By [@freddyaboulton](https://github.com/freddyaboulton) in [PR 4871](https://github.com/gradio-app/gradio/pull/4871)
### Bug Fixes:
No changes to highlight
### Breaking Changes:
No changes to highlight.
### Full Changelog:
No changes to highlight.
# 0.2.9
### New Features:
No changes to highlight
### Bug Fixes:
- Fix bug determining the api name when a demo has `api_name=False` by [@freddyboulton](https://github.com/freddyaboulton) in [PR 4886](https://github.com/gradio-app/gradio/pull/4886)
### Breaking Changes:
No changes to highlight.
### Full Changelog:
* Pinned dependencies to major versions to reduce the likelihood of a broken `gradio_client` due to changes in downstream dependencies by [@abidlabs](https://github.com/abidlabs) in [PR 4885](https://github.com/gradio-app/gradio/pull/4885)
# 0.2.8
### New Features:
- Support loading gradio apps where `api_name=False` by [@abidlabs](https://github.com/abidlabs) in [PR 4683](https://github.com/gradio-app/gradio/pull/4683)
### Bug Fixes:
- Fix bug where space duplication would error if the demo has cpu-basic hardware by [@freddyaboulton](https://github.com/freddyaboulton) in [PR 4583](https://github.com/gradio-app/gradio/pull/4583)
- Fixes and optimizations to URL/download functions by [@akx](https://github.com/akx) in [PR 4695](https://github.com/gradio-app/gradio/pull/4695)
### Breaking Changes:
No changes to highlight.
### Full Changelog:
No changes to highlight.
# 0.2.7
### New Features:
- The output directory for files downloaded via the Client can now be set by the `output_dir` parameter in `Client` by [@abidlabs](https://github.com/abidlabs) in [PR 4501](https://github.com/gradio-app/gradio/pull/4501)
### Bug Fixes:
- The output directory for files downloaded via the Client are now set to a temporary directory by default (instead of the working directory in some cases) by [@abidlabs](https://github.com/abidlabs) in [PR 4501](https://github.com/gradio-app/gradio/pull/4501)
### Breaking Changes:
No changes to highlight.
### Full Changelog:
No changes to highlight.
# 0.2.6
### New Features:
No changes to highlight.
### Bug Fixes:
- Fixed bug file deserialization didn't preserve all file extensions by [@freddyaboulton](https://github.com/freddyaboulton) in [PR 4440](https://github.com/gradio-app/gradio/pull/4440)
- Fixed bug where mounted apps could not be called via the client by [@freddyaboulton](https://github.com/freddyaboulton) in [PR 4435](https://github.com/gradio-app/gradio/pull/4435)
### Breaking Changes:
No changes to highlight.
### Full Changelog:
No changes to highlight.
# 0.2.5
### New Features:
No changes to highlight.
### Bug Fixes:
- Fixes parameter names not showing underscores by [@abidlabs](https://github.com/abidlabs) in [PR 4230](https://github.com/gradio-app/gradio/pull/4230)
- Fixes issue in which state was not handled correctly if `serialize=False` by [@abidlabs](https://github.com/abidlabs) in [PR 4230](https://github.com/gradio-app/gradio/pull/4230)
### Breaking Changes:
No changes to highlight.
### Full Changelog:
No changes to highlight.
# 0.2.4
### Bug Fixes:
- Fixes missing serialization classes for several components: `Barplot`, `Lineplot`, `Scatterplot`, `AnnotatedImage`, `Interpretation` by [@abidlabs](https://github.com/abidlabs) in [PR 4167](https://github.com/gradio-app/gradio/pull/4167)
### Documentation Changes:
No changes to highlight.
### Testing and Infrastructure Changes:
No changes to highlight.
### Breaking Changes:
No changes to highlight.
### Full Changelog:
No changes to highlight.
### Contributors Shoutout:
No changes to highlight.
# 0.2.3
### New Features:
No changes to highlight.
### Bug Fixes:
- Fix example inputs for `gr.File(file_count='multiple')` output components by [@freddyaboulton](https://github.com/freddyaboulton) in [PR 4153](https://github.com/gradio-app/gradio/pull/4153)
### Documentation Changes:
No changes to highlight.
### Testing and Infrastructure Changes:
No changes to highlight.
### Breaking Changes:
No changes to highlight.
### Full Changelog:
No changes to highlight.
### Contributors Shoutout:
No changes to highlight.
# 0.2.2
### New Features:
No changes to highlight.
### Bug Fixes:
- Only send request to `/info` route if demo version is above `3.28.3` by [@freddyaboulton](https://github.com/freddyaboulton) in [PR 4109](https://github.com/gradio-app/gradio/pull/4109)
### Other Changes:
- Fix bug in test from gradio 3.29.0 refactor by [@freddyaboulton](https://github.com/freddyaboulton) in [PR 4138](https://github.com/gradio-app/gradio/pull/4138)
### Breaking Changes:
No changes to highlight.
# 0.2.1
### New Features:
No changes to highlight.
### Bug Fixes:
Removes extraneous `State` component info from the `Client.view_api()` method by [@abidlabs](https://github.com/freddyaboulton) in [PR 4107](https://github.com/gradio-app/gradio/pull/4107)
### Documentation Changes:
No changes to highlight.
### Testing and Infrastructure Changes:
Separates flaky tests from non-flaky tests by [@abidlabs](https://github.com/freddyaboulton) in [PR 4107](https://github.com/gradio-app/gradio/pull/4107)
### Breaking Changes:
No changes to highlight.
### Full Changelog:
No changes to highlight.
### Contributors Shoutout:
No changes to highlight.
# 0.1.4
### New Features:
- Progress Updates from `gr.Progress()` can be accessed via `job.status().progress_data` by @freddyaboulton](https://github.com/freddyaboulton) in [PR 3924](https://github.com/gradio-app/gradio/pull/3924)
### Bug Fixes:
- Fixed bug where unnamed routes where displayed with `api_name` instead of `fn_index` in `view_api` by [@freddyaboulton](https://github.com/freddyaboulton) in [PR 3972](https://github.com/gradio-app/gradio/pull/3972)
### Documentation Changes:
No changes to highlight.
### Testing and Infrastructure Changes:
No changes to highlight.
### Breaking Changes:
No changes to highlight.
### Full Changelog:
No changes to highlight.
### Contributors Shoutout:
No changes to highlight.
# 0.1.3
### New Features:
No changes to highlight.
### Bug Fixes:
- Fixed bug where `Video` components in latest gradio were not able to be deserialized by [@freddyaboulton](https://github.com/freddyaboulton) in [PR 3860](https://github.com/gradio-app/gradio/pull/3860)
### Documentation Changes:
No changes to highlight.
### Testing and Infrastructure Changes:
No changes to highlight.
### Breaking Changes:
No changes to highlight.
### Full Changelog:
No changes to highlight.
### Contributors Shoutout:
No changes to highlight.
# 0.1.2
First public release of the Gradio Client library! The `gradio_client` Python library that makes it very easy to use any Gradio app as an API.
As an example, consider this [Hugging Face Space that transcribes audio files](https://huggingface.co/spaces/abidlabs/whisper) that are recorded from the microphone.
![](https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/gradio-guides/whisper-screenshot.jpg)
Using the `gradio_client` library, we can easily use the Gradio as an API to transcribe audio files programmatically.
Here's the entire code to do it:
```python
from gradio_client import Client
client = Client("abidlabs/whisper")
client.predict("audio_sample.wav")
>> "This is a test of the whisper speech recognition model."
```
Read more about how to use the `gradio_client` library here: https://gradio.app/getting-started-with-the-python-client/

View File

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

3627
gradio/CHANGELOG.md Normal file

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -1 +1 @@
3.38.0
3.39.0

View File

@ -24,7 +24,7 @@
"type": "module",
"dependencies": {
"@gradio/client": "workspace:^0.1.4",
"@gradio/form": "workspace:^0.0.1",
"@gradio/theme": "workspace:^0.0.1"
"@gradio/form": "workspace:^0.0.2",
"@gradio/theme": "workspace:^0.0.2"
}
}

11
js/_website/CHANGELOG.md Normal file
View File

@ -0,0 +1,11 @@
# website
## 0.0.2
### Features
- [#5009](https://github.com/gradio-app/gradio/pull/5009) [`3e70fc81`](https://github.com/gradio-app/gradio/commit/3e70fc81fc12dcb07f40a280b972a61348c9d263) - Correctly render changelog on website after new formatting. Thanks [@aliabd](https://github.com/aliabd)!
### 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)!

View File

@ -1,6 +1,6 @@
{
"name": "website",
"version": "0.0.1",
"version": "0.0.2",
"private": true,
"scripts": {
"dev": "vite dev",

9
js/app/CHANGELOG.md Normal file
View File

@ -0,0 +1,9 @@
# @gradio/app
## 1.1.0
### Features
- [#4995](https://github.com/gradio-app/gradio/pull/4995) [`3f8c210b`](https://github.com/gradio-app/gradio/commit/3f8c210b01ef1ceaaf8ee73be4bf246b5b745bbf) - Implement left and right click in `Gallery` component and show implicit images in `Gallery` grid. Thanks [@hannahblair](https://github.com/hannahblair)!
- [#4993](https://github.com/gradio-app/gradio/pull/4993) [`dc07a9f9`](https://github.com/gradio-app/gradio/commit/dc07a9f947de44b419d8384987a02dcf94977851) - Bringing back the "Add download button for audio" PR by [@leuryr](https://github.com/leuryr). Thanks [@abidlabs](https://github.com/abidlabs)!
- [#4979](https://github.com/gradio-app/gradio/pull/4979) [`44ac8ad0`](https://github.com/gradio-app/gradio/commit/44ac8ad08d82ea12c503dde5c78f999eb0452de2) - Allow setting sketch color default. Thanks [@aliabid94](https://github.com/aliabid94)!

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/app",
"version": "1.0.0",
"version": "1.1.0",
"private": true,
"type": "module",
"scripts": {
@ -24,32 +24,32 @@
},
"dependencies": {
"@gradio/accordion": "workspace:^0.0.1",
"@gradio/atoms": "workspace:^0.0.1",
"@gradio/audio": "workspace:^0.0.1",
"@gradio/button": "workspace:^0.0.1",
"@gradio/chart": "workspace:^0.0.1",
"@gradio/chatbot": "workspace:^0.0.1",
"@gradio/atoms": "workspace:^0.0.2",
"@gradio/audio": "workspace:^0.1.0",
"@gradio/button": "workspace:^0.0.2",
"@gradio/chart": "workspace:^0.0.2",
"@gradio/chatbot": "workspace:^0.0.2",
"@gradio/client": "workspace:^0.1.4",
"@gradio/code": "workspace:^0.0.1",
"@gradio/file": "workspace:^0.0.1",
"@gradio/form": "workspace:^0.0.1",
"@gradio/gallery": "workspace:^0.0.1",
"@gradio/highlighted-text": "workspace:^0.0.1",
"@gradio/code": "workspace:^0.0.2",
"@gradio/file": "workspace:^0.0.2",
"@gradio/form": "workspace:^0.0.2",
"@gradio/gallery": "workspace:^0.1.0",
"@gradio/highlighted-text": "workspace:^0.0.2",
"@gradio/html": "workspace:^0.0.1",
"@gradio/icons": "workspace:^0.0.1",
"@gradio/image": "workspace:^0.0.1",
"@gradio/json": "workspace:^0.0.1",
"@gradio/label": "workspace:^0.0.1",
"@gradio/image": "workspace:^0.1.0",
"@gradio/json": "workspace:^0.0.2",
"@gradio/label": "workspace:^0.0.2",
"@gradio/markdown": "workspace:^0.0.1",
"@gradio/model3D": "workspace:^0.0.1",
"@gradio/plot": "workspace:^0.0.1",
"@gradio/table": "workspace:^0.0.1",
"@gradio/tabs": "workspace:^0.0.1",
"@gradio/theme": "workspace:^0.0.1",
"@gradio/upload": "workspace:^0.0.1",
"@gradio/upload-button": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.1",
"@gradio/video": "workspace:^0.0.1",
"@gradio/model3D": "workspace:^0.0.2",
"@gradio/plot": "workspace:^0.0.2",
"@gradio/table": "workspace:^0.0.2",
"@gradio/tabs": "workspace:^0.0.2",
"@gradio/theme": "workspace:^0.0.2",
"@gradio/upload": "workspace:^0.0.2",
"@gradio/upload-button": "workspace:^0.0.2",
"@gradio/utils": "workspace:^0.0.2",
"@gradio/video": "workspace:^0.0.2",
"@gradio/wasm": "workspace:^0.0.1",
"@playwright/test": "^1.35.1",
"d3-dsv": "^3.0.1",

8
js/atoms/CHANGELOG.md Normal file
View File

@ -0,0 +1,8 @@
# @gradio/atoms
## 0.0.2
### Patch Changes
- Updated dependencies []:
- @gradio/utils@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/atoms",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,7 +8,7 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/utils": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.2",
"@gradio/icons": "workspace:^0.0.1"
},
"main_changeset": true

7
js/audio/CHANGELOG.md Normal file
View File

@ -0,0 +1,7 @@
# @gradio/audio
## 0.1.0
### Features
- [#4993](https://github.com/gradio-app/gradio/pull/4993) [`dc07a9f9`](https://github.com/gradio-app/gradio/commit/dc07a9f947de44b419d8384987a02dcf94977851) - Bringing back the "Add download button for audio" PR by [@leuryr](https://github.com/leuryr). Thanks [@abidlabs](https://github.com/abidlabs)!

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/audio",
"version": "0.0.1",
"version": "0.1.0",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,11 +8,11 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/atoms": "workspace:^0.0.1",
"@gradio/button": "workspace:^0.0.1",
"@gradio/atoms": "workspace:^0.0.2",
"@gradio/button": "workspace:^0.0.2",
"@gradio/icons": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.1",
"@gradio/upload": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.2",
"@gradio/upload": "workspace:^0.0.2",
"extendable-media-recorder": "^7.0.2",
"extendable-media-recorder-wav-encoder": "^7.0.76",
"svelte-range-slider-pips": "^2.0.1"

8
js/button/CHANGELOG.md Normal file
View File

@ -0,0 +1,8 @@
# @gradio/button
## 0.0.2
### Patch Changes
- Updated dependencies []:
- @gradio/utils@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/button",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,7 +8,7 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/utils": "workspace:^0.0.1"
"@gradio/utils": "workspace:^0.0.2"
},
"main_changeset": true
}

9
js/chart/CHANGELOG.md Normal file
View File

@ -0,0 +1,9 @@
# @gradio/chart
## 0.0.2
### Patch Changes
- Updated dependencies [[`41c83070`](https://github.com/gradio-app/gradio/commit/41c83070b01632084e7d29123048a96c1e261407)]:
- @gradio/theme@0.0.2
- @gradio/utils@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/chart",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -9,9 +9,9 @@
"private": true,
"dependencies": {
"@gradio/icons": "workspace:^0.0.1",
"@gradio/theme": "workspace:^0.0.1",
"@gradio/theme": "workspace:^0.0.2",
"@gradio/tooltip": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.2",
"d3-dsv": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-shape": "^3.1.0"

11
js/chatbot/CHANGELOG.md Normal file
View File

@ -0,0 +1,11 @@
# @gradio/chatbot
## 0.0.2
### Patch Changes
- Updated dependencies [[`41c83070`](https://github.com/gradio-app/gradio/commit/41c83070b01632084e7d29123048a96c1e261407)]:
- @gradio/theme@0.0.2
- @gradio/utils@0.0.2
- @gradio/atoms@0.0.2
- @gradio/upload@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/chatbot",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/Index.svelte",
@ -8,11 +8,11 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/atoms": "workspace:^0.0.1",
"@gradio/atoms": "workspace:^0.0.2",
"@gradio/icons": "workspace:^0.0.1",
"@gradio/theme": "workspace:^0.0.1",
"@gradio/upload": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.1",
"@gradio/theme": "workspace:^0.0.2",
"@gradio/upload": "workspace:^0.0.2",
"@gradio/utils": "workspace:^0.0.2",
"@types/katex": "^0.16.0",
"@types/marked": "^5.0.0",
"@types/prismjs": "1.26.0",

9
js/code/CHANGELOG.md Normal file
View File

@ -0,0 +1,9 @@
# @gradio/code
## 0.0.2
### Patch Changes
- Updated dependencies []:
- @gradio/atoms@0.0.2
- @gradio/upload@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/code",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "index.ts",
@ -22,9 +22,9 @@
"@codemirror/search": "^6.2.2",
"@codemirror/state": "^6.1.2",
"@codemirror/view": "^6.4.1",
"@gradio/atoms": "workspace:^0.0.1",
"@gradio/atoms": "workspace:^0.0.2",
"@gradio/icons": "workspace:^0.0.1",
"@gradio/upload": "workspace:^0.0.1",
"@gradio/upload": "workspace:^0.0.2",
"@lezer/common": "^1.0.2",
"@lezer/highlight": "^1.1.3",
"@lezer/markdown": "^1.0.2",

10
js/file/CHANGELOG.md Normal file
View File

@ -0,0 +1,10 @@
# @gradio/file
## 0.0.2
### Patch Changes
- Updated dependencies []:
- @gradio/utils@0.0.2
- @gradio/atoms@0.0.2
- @gradio/upload@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/file",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,10 +8,10 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/atoms": "workspace:^0.0.1",
"@gradio/atoms": "workspace:^0.0.2",
"@gradio/icons": "workspace:^0.0.1",
"@gradio/upload": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.1"
"@gradio/upload": "workspace:^0.0.2",
"@gradio/utils": "workspace:^0.0.2"
},
"main_changeset": true
}

9
js/form/CHANGELOG.md Normal file
View File

@ -0,0 +1,9 @@
# @gradio/form
## 0.0.2
### Patch Changes
- Updated dependencies []:
- @gradio/utils@0.0.2
- @gradio/atoms@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/form",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,8 +8,8 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/atoms": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.1",
"@gradio/atoms": "workspace:^0.0.2",
"@gradio/utils": "workspace:^0.0.2",
"@gradio/icons": "workspace:^0.0.1"
},
"main_changeset": true

7
js/gallery/CHANGELOG.md Normal file
View File

@ -0,0 +1,7 @@
# @gradio/gallery
## 0.1.0
### Features
- [#4995](https://github.com/gradio-app/gradio/pull/4995) [`3f8c210b`](https://github.com/gradio-app/gradio/commit/3f8c210b01ef1ceaaf8ee73be4bf246b5b745bbf) - Implement left and right click in `Gallery` component and show implicit images in `Gallery` grid. Thanks [@hannahblair](https://github.com/hannahblair)!

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/gallery",
"version": "0.0.1",
"version": "0.1.0",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,11 +8,11 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/atoms": "workspace:^0.0.1",
"@gradio/atoms": "workspace:^0.0.2",
"@gradio/icons": "workspace:^0.0.1",
"@gradio/image": "workspace:^0.0.1",
"@gradio/upload": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.1"
"@gradio/image": "workspace:^0.1.0",
"@gradio/upload": "workspace:^0.0.2",
"@gradio/utils": "workspace:^0.0.2"
},
"main_changeset": true
}

View File

@ -0,0 +1,9 @@
# @gradio/highlighted-text
## 0.0.2
### Patch Changes
- Updated dependencies [[`41c83070`](https://github.com/gradio-app/gradio/commit/41c83070b01632084e7d29123048a96c1e261407)]:
- @gradio/theme@0.0.2
- @gradio/utils@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/highlighted-text",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,8 +8,8 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/theme": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.1"
"@gradio/theme": "workspace:^0.0.2",
"@gradio/utils": "workspace:^0.0.2"
},
"main_changeset": true
}

7
js/image/CHANGELOG.md Normal file
View File

@ -0,0 +1,7 @@
# @gradio/image
## 0.1.0
### Features
- [#4979](https://github.com/gradio-app/gradio/pull/4979) [`44ac8ad0`](https://github.com/gradio-app/gradio/commit/44ac8ad08d82ea12c503dde5c78f999eb0452de2) - Allow setting sketch color default. Thanks [@aliabid94](https://github.com/aliabid94)!

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/image",
"version": "0.0.1",
"version": "0.1.0",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,10 +8,10 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/atoms": "workspace:^0.0.1",
"@gradio/atoms": "workspace:^0.0.2",
"@gradio/icons": "workspace:^0.0.1",
"@gradio/upload": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.1",
"@gradio/upload": "workspace:^0.0.2",
"@gradio/utils": "workspace:^0.0.2",
"cropperjs": "^1.5.12",
"lazy-brush": "^1.0.1",
"resize-observer-polyfill": "^1.5.1"

8
js/json/CHANGELOG.md Normal file
View File

@ -0,0 +1,8 @@
# @gradio/json
## 0.0.2
### Patch Changes
- Updated dependencies []:
- @gradio/atoms@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/json",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,7 +8,7 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/atoms": "workspace:^0.0.1",
"@gradio/atoms": "workspace:^0.0.2",
"@gradio/icons": "workspace:^0.0.1"
},
"main_changeset": true

8
js/label/CHANGELOG.md Normal file
View File

@ -0,0 +1,8 @@
# @gradio/label
## 0.0.2
### Patch Changes
- Updated dependencies []:
- @gradio/utils@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/label",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,7 +8,7 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/utils": "workspace:^0.0.1"
"@gradio/utils": "workspace:^0.0.2"
},
"main_changeset": true
}

9
js/model3D/CHANGELOG.md Normal file
View File

@ -0,0 +1,9 @@
# @gradio/model3D
## 0.0.2
### Patch Changes
- Updated dependencies []:
- @gradio/atoms@0.0.2
- @gradio/upload@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/model3D",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,9 +8,9 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/atoms": "workspace:^0.0.1",
"@gradio/atoms": "workspace:^0.0.2",
"@gradio/icons": "workspace:^0.0.1",
"@gradio/upload": "workspace:^0.0.1",
"@gradio/upload": "workspace:^0.0.2",
"babylonjs": "^4.2.1",
"babylonjs-loaders": "^4.2.1"
},

10
js/plot/CHANGELOG.md Normal file
View File

@ -0,0 +1,10 @@
# @gradio/plot
## 0.0.2
### Patch Changes
- Updated dependencies [[`41c83070`](https://github.com/gradio-app/gradio/commit/41c83070b01632084e7d29123048a96c1e261407)]:
- @gradio/theme@0.0.2
- @gradio/utils@0.0.2
- @gradio/atoms@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/plot",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,10 +8,10 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/atoms": "workspace:^0.0.1",
"@gradio/atoms": "workspace:^0.0.2",
"@gradio/icons": "workspace:^0.0.1",
"@gradio/theme": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.1",
"@gradio/theme": "workspace:^0.0.2",
"@gradio/utils": "workspace:^0.0.2",
"@rollup/plugin-json": "^6.0.0",
"plotly.js-dist-min": "^2.10.1",
"svelte-vega": "^2.0.0",

10
js/table/CHANGELOG.md Normal file
View File

@ -0,0 +1,10 @@
# @gradio/table
## 0.0.2
### Patch Changes
- Updated dependencies []:
- @gradio/utils@0.0.2
- @gradio/button@0.0.2
- @gradio/upload@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/table",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,9 +8,9 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/button": "workspace:^0.0.1",
"@gradio/upload": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.1",
"@gradio/button": "workspace:^0.0.2",
"@gradio/upload": "workspace:^0.0.2",
"@gradio/utils": "workspace:^0.0.2",
"@types/d3-dsv": "^3.0.0",
"d3-dsv": "^3.0.1",
"dequal": "^2.0.2"

8
js/tabs/CHANGELOG.md Normal file
View File

@ -0,0 +1,8 @@
# @gradio/tabs
## 0.0.2
### Patch Changes
- Updated dependencies []:
- @gradio/utils@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/tabs",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,7 +8,7 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/utils": "workspace:^0.0.1"
"@gradio/utils": "workspace:^0.0.2"
},
"main_changeset": true
}

7
js/theme/CHANGELOG.md Normal file
View File

@ -0,0 +1,7 @@
# @gradio/theme
## 0.0.2
### Fixes
- [#4997](https://github.com/gradio-app/gradio/pull/4997) [`41c83070`](https://github.com/gradio-app/gradio/commit/41c83070b01632084e7d29123048a96c1e261407) - Add CSS resets and specifiers to play nice with HF blog. Thanks [@aliabid94](https://github.com/aliabid94)!

View File

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

View File

@ -0,0 +1,10 @@
# @gradio/upload-button
## 0.0.2
### Patch Changes
- Updated dependencies []:
- @gradio/utils@0.0.2
- @gradio/button@0.0.2
- @gradio/upload@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/upload-button",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,9 +8,9 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/button": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.1",
"@gradio/upload": "workspace:^0.0.1"
"@gradio/button": "workspace:^0.0.2",
"@gradio/utils": "workspace:^0.0.2",
"@gradio/upload": "workspace:^0.0.2"
},
"main_changeset": true
}

8
js/upload/CHANGELOG.md Normal file
View File

@ -0,0 +1,8 @@
# @gradio/upload
## 0.0.2
### Patch Changes
- Updated dependencies []:
- @gradio/atoms@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/upload",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,7 +8,7 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/atoms": "workspace:^0.0.1",
"@gradio/atoms": "workspace:^0.0.2",
"@gradio/icons": "workspace:^0.0.1"
},
"main_changeset": true

8
js/utils/CHANGELOG.md Normal file
View File

@ -0,0 +1,8 @@
# @gradio/utils
## 0.0.2
### Patch Changes
- Updated dependencies [[`41c83070`](https://github.com/gradio-app/gradio/commit/41c83070b01632084e7d29123048a96c1e261407)]:
- @gradio/theme@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/utils",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,7 +8,7 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/theme": "workspace:^0.0.1"
"@gradio/theme": "workspace:^0.0.2"
},
"main_changeset": true
}

11
js/video/CHANGELOG.md Normal file
View File

@ -0,0 +1,11 @@
# @gradio/video
## 0.0.2
### Patch Changes
- Updated dependencies [[`44ac8ad0`](https://github.com/gradio-app/gradio/commit/44ac8ad08d82ea12c503dde5c78f999eb0452de2)]:
- @gradio/image@0.1.0
- @gradio/utils@0.0.2
- @gradio/atoms@0.0.2
- @gradio/upload@0.0.2

View File

@ -1,6 +1,6 @@
{
"name": "@gradio/video",
"version": "0.0.1",
"version": "0.0.2",
"description": "Gradio UI packages",
"type": "module",
"main": "src/index.ts",
@ -8,11 +8,11 @@
"license": "ISC",
"private": true,
"dependencies": {
"@gradio/atoms": "workspace:^0.0.1",
"@gradio/utils": "workspace:^0.0.1",
"@gradio/atoms": "workspace:^0.0.2",
"@gradio/utils": "workspace:^0.0.2",
"@gradio/icons": "workspace:^0.0.1",
"@gradio/image": "workspace:^0.0.1",
"@gradio/upload": "workspace:^0.0.1"
"@gradio/image": "workspace:^0.1.0",
"@gradio/upload": "workspace:^0.0.2"
},
"main_changeset": true
}

View File

@ -240,10 +240,10 @@ importers:
specifier: workspace:^0.1.4
version: link:../../client/js
'@gradio/form':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../form
'@gradio/theme':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../theme
devDependencies:
'@sveltejs/adapter-auto':
@ -337,37 +337,37 @@ importers:
specifier: workspace:^0.0.1
version: link:../accordion
'@gradio/atoms':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../atoms
'@gradio/audio':
specifier: workspace:^0.0.1
specifier: workspace:^0.1.0
version: link:../audio
'@gradio/button':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../button
'@gradio/chart':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../chart
'@gradio/chatbot':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../chatbot
'@gradio/client':
specifier: workspace:^0.1.4
version: link:../../client/js
'@gradio/code':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../code
'@gradio/file':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../file
'@gradio/form':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../form
'@gradio/gallery':
specifier: workspace:^0.0.1
specifier: workspace:^0.1.0
version: link:../gallery
'@gradio/highlighted-text':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../highlighted-text
'@gradio/html':
specifier: workspace:^0.0.1
@ -376,43 +376,43 @@ importers:
specifier: workspace:^0.0.1
version: link:../icons
'@gradio/image':
specifier: workspace:^0.0.1
specifier: workspace:^0.1.0
version: link:../image
'@gradio/json':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../json
'@gradio/label':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../label
'@gradio/markdown':
specifier: workspace:^0.0.1
version: link:../markdown
'@gradio/model3D':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../model3D
'@gradio/plot':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../plot
'@gradio/table':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../table
'@gradio/tabs':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../tabs
'@gradio/theme':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../theme
'@gradio/upload':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../upload
'@gradio/upload-button':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../upload-button
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
'@gradio/video':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../video
'@gradio/wasm':
specifier: workspace:^0.0.1
@ -439,25 +439,25 @@ importers:
specifier: workspace:^0.0.1
version: link:../icons
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
js/audio:
dependencies:
'@gradio/atoms':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../atoms
'@gradio/button':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../button
'@gradio/icons':
specifier: workspace:^0.0.1
version: link:../icons
'@gradio/upload':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../upload
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
extendable-media-recorder:
specifier: ^7.0.2
@ -472,7 +472,7 @@ importers:
js/button:
dependencies:
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
js/chart:
@ -481,13 +481,13 @@ importers:
specifier: workspace:^0.0.1
version: link:../icons
'@gradio/theme':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../theme
'@gradio/tooltip':
specifier: workspace:^0.0.1
version: link:../tooltip
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
d3-dsv:
specifier: ^3.0.1
@ -512,19 +512,19 @@ importers:
js/chatbot:
dependencies:
'@gradio/atoms':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../atoms
'@gradio/icons':
specifier: workspace:^0.0.1
version: link:../icons
'@gradio/theme':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../theme
'@gradio/upload':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../upload
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
'@types/dompurify':
specifier: ^3.0.2
@ -599,13 +599,13 @@ importers:
specifier: ^6.4.1
version: 6.4.1
'@gradio/atoms':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../atoms
'@gradio/icons':
specifier: workspace:^0.0.1
version: link:../icons
'@gradio/upload':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../upload
'@lezer/common':
specifier: ^1.0.2
@ -629,55 +629,55 @@ importers:
js/file:
dependencies:
'@gradio/atoms':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../atoms
'@gradio/icons':
specifier: workspace:^0.0.1
version: link:../icons
'@gradio/upload':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../upload
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
js/form:
dependencies:
'@gradio/atoms':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../atoms
'@gradio/icons':
specifier: workspace:^0.0.1
version: link:../icons
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
js/gallery:
dependencies:
'@gradio/atoms':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../atoms
'@gradio/icons':
specifier: workspace:^0.0.1
version: link:../icons
'@gradio/image':
specifier: workspace:^0.0.1
specifier: workspace:^0.1.0
version: link:../image
'@gradio/upload':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../upload
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
js/highlighted-text:
dependencies:
'@gradio/theme':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../theme
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
js/html: {}
@ -687,16 +687,16 @@ importers:
js/image:
dependencies:
'@gradio/atoms':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../atoms
'@gradio/icons':
specifier: workspace:^0.0.1
version: link:../icons
'@gradio/upload':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../upload
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
cropperjs:
specifier: ^1.5.12
@ -711,7 +711,7 @@ importers:
js/json:
dependencies:
'@gradio/atoms':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../atoms
'@gradio/icons':
specifier: workspace:^0.0.1
@ -720,7 +720,7 @@ importers:
js/label:
dependencies:
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
js/lite: {}
@ -730,13 +730,13 @@ importers:
js/model3D:
dependencies:
'@gradio/atoms':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../atoms
'@gradio/icons':
specifier: workspace:^0.0.1
version: link:../icons
'@gradio/upload':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../upload
babylonjs:
specifier: ^4.2.1
@ -748,16 +748,16 @@ importers:
js/plot:
dependencies:
'@gradio/atoms':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../atoms
'@gradio/icons':
specifier: workspace:^0.0.1
version: link:../icons
'@gradio/theme':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../theme
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
'@rollup/plugin-json':
specifier: ^6.0.0
@ -778,13 +778,13 @@ importers:
js/table:
dependencies:
'@gradio/button':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../button
'@gradio/upload':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../upload
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
'@types/d3-dsv':
specifier: ^3.0.0
@ -799,7 +799,7 @@ importers:
js/tabs:
dependencies:
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
js/theme: {}
@ -811,7 +811,7 @@ importers:
js/upload:
dependencies:
'@gradio/atoms':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../atoms
'@gradio/icons':
specifier: workspace:^0.0.1
@ -820,37 +820,37 @@ importers:
js/upload-button:
dependencies:
'@gradio/button':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../button
'@gradio/upload':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../upload
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
js/utils:
dependencies:
'@gradio/theme':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../theme
js/video:
dependencies:
'@gradio/atoms':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../atoms
'@gradio/icons':
specifier: workspace:^0.0.1
version: link:../icons
'@gradio/image':
specifier: workspace:^0.0.1
specifier: workspace:^0.1.0
version: link:../image
'@gradio/upload':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../upload
'@gradio/utils':
specifier: workspace:^0.0.1
specifier: workspace:^0.0.2
version: link:../utils
js/wasm:
@ -8049,6 +8049,7 @@ packages:
/debug@3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
requiresBuild: true
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
@ -11893,6 +11894,7 @@ packages:
/prr@1.0.1:
resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
requiresBuild: true
optional: true
/pseudomap@1.0.2:
@ -12450,6 +12452,7 @@ packages:
/sax@1.2.4:
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
requiresBuild: true
optional: true
/saxes@6.0.0:

View File

@ -3,7 +3,7 @@ aiohttp~=3.0
altair>=4.2.0,<6.0
fastapi
ffmpy
gradio_client>=0.2.9
gradio_client>=0.3.0
httpx
huggingface_hub>=0.14.0
Jinja2<4.0