@gradio/video 0.8.9 → 0.9.0
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 +29 -0
- package/package.json +11 -10
- package/shared/Player.svelte +1 -0
- package/shared/Video.svelte +1 -0
- package/shared/VideoPreview.svelte +1 -0
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,34 @@
|
|
1
1
|
# @gradio/video
|
2
2
|
|
3
|
+
## 0.9.0
|
4
|
+
|
5
|
+
### Features
|
6
|
+
|
7
|
+
- [#8131](https://github.com/gradio-app/gradio/pull/8131) [`bb504b4`](https://github.com/gradio-app/gradio/commit/bb504b494947a287d6386e0e7ead3860c0f15223) - Gradio components in `gr.Chatbot()`. Thanks @dawoodkhan82!
|
8
|
+
|
9
|
+
### Fixes
|
10
|
+
|
11
|
+
- [#8594](https://github.com/gradio-app/gradio/pull/8594) [`530f8a0`](https://github.com/gradio-app/gradio/commit/530f8a0b056b35dabe9bdd148e1ab7c4577f017d) - chatbot component tweaks. Thanks @pngwn!
|
12
|
+
|
13
|
+
### Dependency updates
|
14
|
+
|
15
|
+
- @gradio/atoms@0.7.5
|
16
|
+
- @gradio/image@0.12.0
|
17
|
+
- @gradio/utils@0.5.0
|
18
|
+
- @gradio/icons@0.5.0
|
19
|
+
- @gradio/wasm@0.11.0
|
20
|
+
- @gradio/client@1.2.0
|
21
|
+
- @gradio/statustracker@0.7.0
|
22
|
+
- @gradio/upload@0.11.3
|
23
|
+
|
24
|
+
## 0.8.10
|
25
|
+
|
26
|
+
### Dependency updates
|
27
|
+
|
28
|
+
- @gradio/client@1.1.1
|
29
|
+
- @gradio/upload@0.11.2
|
30
|
+
- @gradio/image@0.11.10
|
31
|
+
|
3
32
|
## 0.8.9
|
4
33
|
|
5
34
|
### Dependency updates
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/video",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.9.0",
|
4
4
|
"description": "Gradio UI packages",
|
5
5
|
"type": "module",
|
6
6
|
"author": "",
|
@@ -10,22 +10,23 @@
|
|
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.
|
18
|
-
"@gradio/
|
19
|
-
"@gradio/wasm": "^0.
|
20
|
-
"@gradio/
|
13
|
+
"@gradio/atoms": "^0.7.5",
|
14
|
+
"@gradio/client": "^1.2.0",
|
15
|
+
"@gradio/image": "^0.12.0",
|
16
|
+
"@gradio/upload": "^0.11.3",
|
17
|
+
"@gradio/statustracker": "^0.7.0",
|
18
|
+
"@gradio/icons": "^0.5.0",
|
19
|
+
"@gradio/wasm": "^0.11.0",
|
20
|
+
"@gradio/utils": "^0.5.0"
|
21
21
|
},
|
22
22
|
"devDependencies": {
|
23
|
-
"@gradio/preview": "^0.
|
23
|
+
"@gradio/preview": "^0.10.0"
|
24
24
|
},
|
25
25
|
"exports": {
|
26
26
|
".": "./index.ts",
|
27
27
|
"./example": "./Example.svelte",
|
28
28
|
"./shared": "./shared/index.ts",
|
29
|
+
"./base": "./shared/VideoPreview.svelte",
|
29
30
|
"./package.json": "./package.json"
|
30
31
|
},
|
31
32
|
"main": "index.ts",
|
package/shared/Player.svelte
CHANGED
package/shared/Video.svelte
CHANGED
@@ -75,6 +75,7 @@ Then, even when `controls` is false, the compiled DOM would be `<video controls=
|
|
75
75
|
on:mouseout={dispatch.bind(null, "mouseout")}
|
76
76
|
on:focus={dispatch.bind(null, "focus")}
|
77
77
|
on:blur={dispatch.bind(null, "blur")}
|
78
|
+
on:load
|
78
79
|
bind:currentTime
|
79
80
|
bind:duration
|
80
81
|
bind:paused
|