@gradio/video 0.12.1 → 0.13.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 +28 -0
- package/dist/shared/Player.svelte +4 -0
- package/package.json +9 -9
- package/shared/Player.svelte +3 -0
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,33 @@
|
|
1
1
|
# @gradio/video
|
2
2
|
|
3
|
+
## 0.13.1
|
4
|
+
|
5
|
+
### Dependency updates
|
6
|
+
|
7
|
+
- @gradio/atoms@0.13.1
|
8
|
+
- @gradio/statustracker@0.10.1
|
9
|
+
- @gradio/client@1.10.0
|
10
|
+
- @gradio/icons@0.10.0
|
11
|
+
- @gradio/upload@0.14.5
|
12
|
+
- @gradio/image@0.20.1
|
13
|
+
|
14
|
+
## 0.13.0
|
15
|
+
|
16
|
+
### Features
|
17
|
+
|
18
|
+
- [#10192](https://github.com/gradio-app/gradio/pull/10192) [`4fc7fb7`](https://github.com/gradio-app/gradio/commit/4fc7fb777c42af537e4af612423fa44029657d41) - Ensure components can be remounted with their previous data. Thanks @pngwn!
|
19
|
+
|
20
|
+
### Dependency updates
|
21
|
+
|
22
|
+
- @gradio/atoms@0.13.0
|
23
|
+
- @gradio/utils@0.10.0
|
24
|
+
- @gradio/upload@0.14.4
|
25
|
+
- @gradio/client@1.9.0
|
26
|
+
- @gradio/icons@0.9.0
|
27
|
+
- @gradio/statustracker@0.10.0
|
28
|
+
- @gradio/wasm@0.16.0
|
29
|
+
- @gradio/image@0.20.0
|
30
|
+
|
3
31
|
## 0.12.1
|
4
32
|
|
5
33
|
### Dependency updates
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/video",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.13.1",
|
4
4
|
"description": "Gradio UI packages",
|
5
5
|
"type": "module",
|
6
6
|
"author": "",
|
@@ -11,14 +11,14 @@
|
|
11
11
|
"@ffmpeg/util": "^0.12.1",
|
12
12
|
"hls.js": "^1.5.13",
|
13
13
|
"mrmime": "^2.0.0",
|
14
|
-
"@gradio/
|
15
|
-
"@gradio/
|
16
|
-
"@gradio/
|
17
|
-
"@gradio/
|
18
|
-
"@gradio/
|
19
|
-
"@gradio/
|
20
|
-
"@gradio/utils": "^0.
|
21
|
-
"@gradio/wasm": "^0.
|
14
|
+
"@gradio/atoms": "^0.13.1",
|
15
|
+
"@gradio/client": "^1.10.0",
|
16
|
+
"@gradio/icons": "^0.10.0",
|
17
|
+
"@gradio/image": "^0.20.1",
|
18
|
+
"@gradio/statustracker": "^0.10.1",
|
19
|
+
"@gradio/upload": "^0.14.5",
|
20
|
+
"@gradio/utils": "^0.10.0",
|
21
|
+
"@gradio/wasm": "^0.16.0"
|
22
22
|
},
|
23
23
|
"devDependencies": {
|
24
24
|
"@gradio/preview": "^0.13.0"
|