@gradio/video 0.8.0 → 0.8.1
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 +15 -0
- package/Index.svelte +1 -1
- package/package.json +8 -8
- package/shared/InteractiveVideo.svelte +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
# @gradio/video
|
2
2
|
|
3
|
+
## 0.8.1
|
4
|
+
|
5
|
+
### Fixes
|
6
|
+
|
7
|
+
- [#8252](https://github.com/gradio-app/gradio/pull/8252) [`22df61a`](https://github.com/gradio-app/gradio/commit/22df61a26adf8023f6dd49c051979990e8d3879a) - Client node fix. Thanks @pngwn!
|
8
|
+
|
9
|
+
### Dependency updates
|
10
|
+
|
11
|
+
- @gradio/atoms@0.7.3
|
12
|
+
- @gradio/statustracker@0.5.2
|
13
|
+
- @gradio/client@0.19.0
|
14
|
+
- @gradio/icons@0.4.1
|
15
|
+
- @gradio/image@0.11.1
|
16
|
+
- @gradio/upload@0.10.1
|
17
|
+
|
3
18
|
## 0.8.0
|
4
19
|
|
5
20
|
### Features
|
package/Index.svelte
CHANGED
@@ -208,7 +208,7 @@
|
|
208
208
|
i18n={gradio.i18n}
|
209
209
|
max_file_size={gradio.max_file_size}
|
210
210
|
upload={gradio.client.upload}
|
211
|
-
stream_handler={gradio.client.
|
211
|
+
stream_handler={gradio.client.stream}
|
212
212
|
>
|
213
213
|
<UploadText i18n={gradio.i18n} type="video" />
|
214
214
|
</Video>
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/video",
|
3
|
-
"version": "0.8.
|
3
|
+
"version": "0.8.1",
|
4
4
|
"description": "Gradio UI packages",
|
5
5
|
"type": "module",
|
6
6
|
"author": "",
|
@@ -10,14 +10,14 @@
|
|
10
10
|
"@ffmpeg/ffmpeg": "^0.12.7",
|
11
11
|
"@ffmpeg/util": "^0.12.1",
|
12
12
|
"mrmime": "^2.0.0",
|
13
|
-
"@gradio/atoms": "^0.7.
|
14
|
-
"@gradio/
|
15
|
-
"@gradio/
|
16
|
-
"@gradio/
|
17
|
-
"@gradio/statustracker": "^0.5.
|
18
|
-
"@gradio/
|
13
|
+
"@gradio/atoms": "^0.7.3",
|
14
|
+
"@gradio/client": "^0.19.0",
|
15
|
+
"@gradio/image": "^0.11.1",
|
16
|
+
"@gradio/wasm": "^0.10.1",
|
17
|
+
"@gradio/statustracker": "^0.5.2",
|
18
|
+
"@gradio/icons": "^0.4.1",
|
19
19
|
"@gradio/utils": "^0.4.1",
|
20
|
-
"@gradio/
|
20
|
+
"@gradio/upload": "^0.10.1"
|
21
21
|
},
|
22
22
|
"devDependencies": {
|
23
23
|
"@gradio/preview": "^0.9.0"
|
@@ -30,7 +30,7 @@
|
|
30
30
|
export let handle_reset_value: () => void = () => {};
|
31
31
|
export let max_file_size: number | null = null;
|
32
32
|
export let upload: Client["upload"];
|
33
|
-
export let stream_handler: Client["
|
33
|
+
export let stream_handler: Client["stream"];
|
34
34
|
|
35
35
|
const dispatch = createEventDispatcher<{
|
36
36
|
change: FileData | null;
|