@gradio/client 1.15.3 → 1.15.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/dist/__vite-browser-external-DYxpcVy9.js +4 -0
- package/dist/browser.es.js +2038 -0
- package/dist/client.d.ts.map +1 -1
- package/dist/helpers/init_helpers.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +32 -23
- package/dist/types.d.ts +1 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/utils/submit.d.ts.map +1 -1
- package/package.json +9 -4
- package/src/client.ts +9 -2
- package/src/helpers/init_helpers.ts +30 -18
- package/src/index.ts +2 -0
- package/src/types.ts +1 -0
- package/src/utils/submit.ts +0 -2
- package/src/vite-env.d.ts +2 -0
- package/vite.config.js +10 -2
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# @gradio/client
|
2
2
|
|
3
|
+
## 1.15.5
|
4
|
+
|
5
|
+
### Fixes
|
6
|
+
|
7
|
+
- [#11430](https://github.com/gradio-app/gradio/pull/11430) [`4d4cd4b`](https://github.com/gradio-app/gradio/commit/4d4cd4b08d6daafc66e0189a2b274916da00d480) - fix exports + add browser build. Thanks @pngwn!
|
8
|
+
- [#11435](https://github.com/gradio-app/gradio/pull/11435) [`50d43a8`](https://github.com/gradio-app/gradio/commit/50d43a8e8bc2a4862668a5d46a5e6482b4f75fe3) - SSR Auth Fix. Thanks @dawoodkhan82!
|
9
|
+
|
10
|
+
## 1.15.4
|
11
|
+
|
12
|
+
### Fixes
|
13
|
+
|
14
|
+
- [#11432](https://github.com/gradio-app/gradio/pull/11432) [`dd1eee5`](https://github.com/gradio-app/gradio/commit/dd1eee5f9cd3d70773912fd6444d093bdcea321a) - Fix bug where cancelling an event would close the event stream. Thanks @freddyaboulton!
|
15
|
+
- [#11421](https://github.com/gradio-app/gradio/pull/11421) [`c2acf6e`](https://github.com/gradio-app/gradio/commit/c2acf6e33025fe7bbfe0660c182006651cc95090) - Preserve value in reload mode. Thanks @aliabid94!
|
16
|
+
|
3
17
|
## 1.15.3
|
4
18
|
|
5
19
|
### Fixes
|