@gradio/client 2.0.0-dev.0 → 2.0.0-dev.2
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 +13 -0
- package/dist/browser.js +887 -872
- package/dist/client.d.ts.map +1 -1
- package/dist/helpers/api_info.d.ts +1 -1
- package/dist/helpers/api_info.d.ts.map +1 -1
- package/dist/helpers/data.d.ts +0 -1
- package/dist/helpers/data.d.ts.map +1 -1
- package/dist/helpers/init_helpers.d.ts.map +1 -1
- package/dist/helpers/spaces.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +520 -498
- package/dist/types.d.ts +7 -5
- package/dist/types.d.ts.map +1 -1
- package/dist/utils/filesize.d.ts +15 -0
- package/dist/utils/filesize.d.ts.map +1 -0
- package/dist/utils/submit.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +0 -1
- package/src/helpers/api_info.ts +3 -2
- package/src/helpers/data.ts +2 -2
- package/src/index.ts +2 -1
- package/src/test/api_info.test.ts +8 -2
- package/src/test/filesize.test.ts +143 -0
- package/src/test/test_data.ts +5 -5
- package/src/types.ts +7 -4
- package/src/upload.ts +3 -3
- package/src/utils/filesize.ts +41 -0
- package/src/utils/handle_blob.ts +3 -1
- package/src/utils/submit.ts +415 -395
- package/tsconfig.json +2 -1
- package/dist/test/handlers.d.ts +0 -4
- package/dist/test/handlers.d.ts.map +0 -1
- package/dist/test/mock_eventsource.d.ts +0 -2
- package/dist/test/mock_eventsource.d.ts.map +0 -1
- package/dist/test/server.d.ts +0 -2
- package/dist/test/server.d.ts.map +0 -1
- package/dist/test/test_data.d.ts +0 -76
- package/dist/test/test_data.d.ts.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @gradio/client
|
|
2
2
|
|
|
3
|
+
## 2.0.0-dev.2
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- [#12363](https://github.com/gradio-app/gradio/pull/12363) [`4845bfd`](https://github.com/gradio-app/gradio/commit/4845bfdab53096a609d80485e87d5cc70f3f0521) - Fix queue false render issue. Thanks @freddyaboulton!
|
|
8
|
+
- [#12378](https://github.com/gradio-app/gradio/pull/12378) [`f5e5344`](https://github.com/gradio-app/gradio/commit/f5e5344db61eba28253719928577dc2c495958e1) - Fix some e2e tests. Thanks @freddyaboulton!
|
|
9
|
+
|
|
10
|
+
## 2.0.0-dev.1
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- [#12069](https://github.com/gradio-app/gradio/pull/12069) [`9de88ca`](https://github.com/gradio-app/gradio/commit/9de88ca470ce529366d259f0deaa955f658000b9) - Rename show_api. Thanks @freddyaboulton!
|
|
15
|
+
|
|
3
16
|
## 2.0.0-dev.0
|
|
4
17
|
|
|
5
18
|
### Features
|