@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 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
@@ -69,6 +69,10 @@ const handle_trim_video = async (videoBlob) => {
69
69
  function open_full_screen() {
70
70
  video.requestFullscreen();
71
71
  }
72
+ $:
73
+ time = time || 0;
74
+ $:
75
+ duration = duration || 0;
72
76
  </script>
73
77
 
74
78
  <div class="wrap">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/video",
3
- "version": "0.12.1",
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/icons": "^0.8.1",
15
- "@gradio/atoms": "^0.12.0",
16
- "@gradio/image": "^0.19.0",
17
- "@gradio/client": "^1.8.0",
18
- "@gradio/upload": "^0.14.3",
19
- "@gradio/statustracker": "^0.9.7",
20
- "@gradio/utils": "^0.9.0",
21
- "@gradio/wasm": "^0.15.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"
@@ -97,6 +97,9 @@
97
97
  function open_full_screen(): void {
98
98
  video.requestFullscreen();
99
99
  }
100
+
101
+ $: time = time || 0;
102
+ $: duration = duration || 0;
100
103
  </script>
101
104
 
102
105
  <div class="wrap">