mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-18 10:44:33 +08:00
chore: update versions (#5326)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
1e90a2ef2d
commit
632e4d8378
@ -1,9 +0,0 @@
|
||||
---
|
||||
"@gradio/app": patch
|
||||
"@gradio/markdown": patch
|
||||
"@gradio/textbox": patch
|
||||
"gradio": patch
|
||||
"website": patch
|
||||
---
|
||||
|
||||
fix:ensure login form has correct styles
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/dropdown": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:ensure dropdown stays open when identical data is passed in
|
@ -1,5 +1,12 @@
|
||||
# gradio
|
||||
|
||||
## 3.41.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#5324](https://github.com/gradio-app/gradio/pull/5324) [`31996c99`](https://github.com/gradio-app/gradio/commit/31996c991d6bfca8cef975eb8e3c9f61a7aced19) - ensure login form has correct styles. Thanks [@pngwn](https://github.com/pngwn)!
|
||||
- [#5323](https://github.com/gradio-app/gradio/pull/5323) [`e32b0928`](https://github.com/gradio-app/gradio/commit/e32b0928d2d00342ca917ebb10c379ffc2ec200d) - ensure dropdown stays open when identical data is passed in. Thanks [@pngwn](https://github.com/pngwn)!
|
||||
|
||||
## 3.41.0
|
||||
|
||||
### Highlights
|
||||
|
@ -1,5 +1,12 @@
|
||||
# gradio
|
||||
|
||||
## 3.41.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#5324](https://github.com/gradio-app/gradio/pull/5324) [`31996c99`](https://github.com/gradio-app/gradio/commit/31996c991d6bfca8cef975eb8e3c9f61a7aced19) - ensure login form has correct styles. Thanks [@pngwn](https://github.com/pngwn)!
|
||||
- [#5323](https://github.com/gradio-app/gradio/pull/5323) [`e32b0928`](https://github.com/gradio-app/gradio/commit/e32b0928d2d00342ca917ebb10c379ffc2ec200d) - ensure dropdown stays open when identical data is passed in. Thanks [@pngwn](https://github.com/pngwn)!
|
||||
|
||||
## 3.41.0
|
||||
|
||||
### Highlights
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradio",
|
||||
"version": "3.41.0",
|
||||
"version": "3.41.1",
|
||||
"description": "",
|
||||
"python": "true"
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
3.41.0
|
||||
3.41.1
|
@ -1,5 +1,11 @@
|
||||
# website
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#5324](https://github.com/gradio-app/gradio/pull/5324) [`31996c99`](https://github.com/gradio-app/gradio/commit/31996c991d6bfca8cef975eb8e3c9f61a7aced19) - ensure login form has correct styles. Thanks [@pngwn](https://github.com/pngwn)!
|
||||
|
||||
## 0.2.0
|
||||
|
||||
### Highlights
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "website",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "python generate_jsons/generate.py && vite dev",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/app
|
||||
|
||||
## 1.3.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#5324](https://github.com/gradio-app/gradio/pull/5324) [`31996c99`](https://github.com/gradio-app/gradio/commit/31996c991d6bfca8cef975eb8e3c9f61a7aced19) - ensure login form has correct styles. Thanks [@pngwn](https://github.com/pngwn)!
|
||||
|
||||
## 1.3.0
|
||||
|
||||
### Highlights
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/app",
|
||||
"version": "1.3.0",
|
||||
"version": "1.3.1",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/chatbot
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`31996c99`](https://github.com/gradio-app/gradio/commit/31996c991d6bfca8cef975eb8e3c9f61a7aced19)]:
|
||||
- @gradio/markdown@0.1.1
|
||||
|
||||
## 0.2.0
|
||||
|
||||
### Highlights
|
||||
@ -19,19 +26,19 @@ These improvements will be particularly beneficial to large applications.
|
||||
- Corrected an issue that was causing markdown to re-render infinitely.
|
||||
- Ensured that the `gr.3DModel` does re-render prematurely.
|
||||
|
||||
Thanks [@pngwn](https://github.com/pngwn)!
|
||||
Thanks [@pngwn](https://github.com/pngwn)!
|
||||
|
||||
### Features
|
||||
|
||||
- [#5215](https://github.com/gradio-app/gradio/pull/5215) [`fbdad78a`](https://github.com/gradio-app/gradio/commit/fbdad78af4c47454cbb570f88cc14bf4479bbceb) - Lazy load interactive or static variants of a component individually, rather than loading both variants regardless. This change will improve performance for many applications. Thanks [@pngwn](https://github.com/pngwn)!
|
||||
- [#5112](https://github.com/gradio-app/gradio/pull/5112) [`1cefee7f`](https://github.com/gradio-app/gradio/commit/1cefee7fc05175aca23ba04b3a3fda7b97f49bf0) - chore(deps): update dependency marked to v7. Thanks [@renovate](https://github.com/apps/renovate)!
|
||||
- [#5258](https://github.com/gradio-app/gradio/pull/5258) [`92282cea`](https://github.com/gradio-app/gradio/commit/92282cea6afdf7e9930ece1046d8a63be34b3cea) - Chatbot Avatar Images. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
|
||||
- [#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)!
|
||||
- [#5112](https://github.com/gradio-app/gradio/pull/5112) [`1cefee7f`](https://github.com/gradio-app/gradio/commit/1cefee7fc05175aca23ba04b3a3fda7b97f49bf0) - chore(deps): update dependency marked to v7. Thanks [@renovate](https://github.com/apps/renovate)!
|
||||
- [#5258](https://github.com/gradio-app/gradio/pull/5258) [`92282cea`](https://github.com/gradio-app/gradio/commit/92282cea6afdf7e9930ece1046d8a63be34b3cea) - Chatbot Avatar Images. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#5242](https://github.com/gradio-app/gradio/pull/5242) [`2b397791`](https://github.com/gradio-app/gradio/commit/2b397791fe2059e4beb72937ff0436f2d4d28b4b) - Fix message text overflow onto copy button in `gr.Chatbot`. Thanks [@hannahblair](https://github.com/hannahblair)!
|
||||
- [#5285](https://github.com/gradio-app/gradio/pull/5285) [`cdfd4217`](https://github.com/gradio-app/gradio/commit/cdfd42174a9c777eaee9c1209bf8e90d8c7791f2) - Tweaks to `icon` parameter in `gr.Button()`. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
- [#5122](https://github.com/gradio-app/gradio/pull/5122) [`3b805346`](https://github.com/gradio-app/gradio/commit/3b8053469aca6c7a86a6731e641e4400fc34d7d3) - Allows code block in chatbot to scroll horizontally. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
|
||||
- [#5242](https://github.com/gradio-app/gradio/pull/5242) [`2b397791`](https://github.com/gradio-app/gradio/commit/2b397791fe2059e4beb72937ff0436f2d4d28b4b) - Fix message text overflow onto copy button in `gr.Chatbot`. Thanks [@hannahblair](https://github.com/hannahblair)!
|
||||
- [#5285](https://github.com/gradio-app/gradio/pull/5285) [`cdfd4217`](https://github.com/gradio-app/gradio/commit/cdfd42174a9c777eaee9c1209bf8e90d8c7791f2) - Tweaks to `icon` parameter in `gr.Button()`. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
- [#5122](https://github.com/gradio-app/gradio/pull/5122) [`3b805346`](https://github.com/gradio-app/gradio/commit/3b8053469aca6c7a86a6731e641e4400fc34d7d3) - Allows code block in chatbot to scroll horizontally. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
|
||||
|
||||
## 0.1.0
|
||||
|
||||
@ -48,4 +55,4 @@ These improvements will be particularly beneficial to large applications.
|
||||
- @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.2.0",
|
||||
"version": "0.2.1",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"main": "./index.svelte",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/dataframe
|
||||
|
||||
## 0.1.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`31996c99`](https://github.com/gradio-app/gradio/commit/31996c991d6bfca8cef975eb8e3c9f61a7aced19)]:
|
||||
- @gradio/markdown@0.1.1
|
||||
|
||||
## 0.1.0
|
||||
|
||||
### Highlights
|
||||
@ -19,18 +26,18 @@ These improvements will be particularly beneficial to large applications.
|
||||
- Corrected an issue that was causing markdown to re-render infinitely.
|
||||
- Ensured that the `gr.3DModel` does re-render prematurely.
|
||||
|
||||
Thanks [@pngwn](https://github.com/pngwn)!
|
||||
Thanks [@pngwn](https://github.com/pngwn)!
|
||||
|
||||
### Features
|
||||
|
||||
- [#5268](https://github.com/gradio-app/gradio/pull/5268) [`f49028cf`](https://github.com/gradio-app/gradio/commit/f49028cfe3e21097001ddbda71c560b3d8b42e1c) - Move markdown & latex processing to the frontend for the gr.Markdown and gr.DataFrame components. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
- [#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)!
|
||||
- [#5283](https://github.com/gradio-app/gradio/pull/5283) [`a7460557`](https://github.com/gradio-app/gradio/commit/a74605572dd0d6bb41df6b38b120d656370dd67d) - Add height parameter and scrolling to `gr.Dataframe`. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
- [#5268](https://github.com/gradio-app/gradio/pull/5268) [`f49028cf`](https://github.com/gradio-app/gradio/commit/f49028cfe3e21097001ddbda71c560b3d8b42e1c) - Move markdown & latex processing to the frontend for the gr.Markdown and gr.DataFrame components. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
- [#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)!
|
||||
- [#5283](https://github.com/gradio-app/gradio/pull/5283) [`a7460557`](https://github.com/gradio-app/gradio/commit/a74605572dd0d6bb41df6b38b120d656370dd67d) - Add height parameter and scrolling to `gr.Dataframe`. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#5256](https://github.com/gradio-app/gradio/pull/5256) [`933db53e`](https://github.com/gradio-app/gradio/commit/933db53e93a1229fdf149556d61da5c4c7e1a331) - Better handling of empty dataframe in `gr.DataFrame`. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
- [#5256](https://github.com/gradio-app/gradio/pull/5256) [`933db53e`](https://github.com/gradio-app/gradio/commit/933db53e93a1229fdf149556d61da5c4c7e1a331) - Better handling of empty dataframe in `gr.DataFrame`. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
|
||||
## 0.0.2
|
||||
|
||||
@ -38,4 +45,4 @@ These improvements will be particularly beneficial to large applications.
|
||||
|
||||
- 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.1.0",
|
||||
"version": "0.1.1",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"main": "./index.svelte",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/dropdown
|
||||
|
||||
## 0.1.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#5323](https://github.com/gradio-app/gradio/pull/5323) [`e32b0928`](https://github.com/gradio-app/gradio/commit/e32b0928d2d00342ca917ebb10c379ffc2ec200d) - ensure dropdown stays open when identical data is passed in. Thanks [@pngwn](https://github.com/pngwn)!
|
||||
|
||||
## 0.1.0
|
||||
|
||||
### Highlights
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/dropdown",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"main": "./index.svelte",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/markdown
|
||||
|
||||
## 0.1.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#5324](https://github.com/gradio-app/gradio/pull/5324) [`31996c99`](https://github.com/gradio-app/gradio/commit/31996c991d6bfca8cef975eb8e3c9f61a7aced19) - ensure login form has correct styles. Thanks [@pngwn](https://github.com/pngwn)!
|
||||
|
||||
## 0.1.0
|
||||
|
||||
### Highlights
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/markdown",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"main": "./static/index.ts",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/textbox
|
||||
|
||||
## 0.1.2
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#5324](https://github.com/gradio-app/gradio/pull/5324) [`31996c99`](https://github.com/gradio-app/gradio/commit/31996c991d6bfca8cef975eb8e3c9f61a7aced19) - ensure login form has correct styles. Thanks [@pngwn](https://github.com/pngwn)!
|
||||
|
||||
## 0.1.1
|
||||
|
||||
### Highlights
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/textbox",
|
||||
"version": "0.1.1",
|
||||
"version": "0.1.2",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"main": "index.svelte",
|
||||
|
Loading…
Reference in New Issue
Block a user