@gradio/video 0.14.24 → 0.15.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 CHANGED
@@ -1,5 +1,20 @@
1
1
  # @gradio/video
2
2
 
3
+ ## 0.15.0
4
+
5
+ ### Features
6
+
7
+ - [#11721](https://github.com/gradio-app/gradio/pull/11721) [`58d9d9e`](https://github.com/gradio-app/gradio/commit/58d9d9e98194dada5267ac1599063cf21723cbde) - Remove dupe maximise/maximize icon. Thanks @hannahblair!
8
+
9
+ ### Dependency updates
10
+
11
+ - @gradio/statustracker@0.10.17
12
+ - @gradio/atoms@0.16.5
13
+ - @gradio/client@1.17.1
14
+ - @gradio/icons@0.13.0
15
+ - @gradio/upload@0.16.15
16
+ - @gradio/image@0.22.17
17
+
3
18
  ## 0.14.24
4
19
 
5
20
  ### Dependency updates
@@ -1,5 +1,5 @@
1
1
  <script>import { createEventDispatcher } from "svelte";
2
- import { Play, Pause, Maximise, Undo } from "@gradio/icons";
2
+ import { Play, Pause, Maximize, Undo } from "@gradio/icons";
3
3
  import Video from "./Video.svelte";
4
4
  import VideoControls from "./VideoControls.svelte";
5
5
  import { prepare_files } from "@gradio/client";
@@ -141,7 +141,7 @@ $:
141
141
  on:click={open_full_screen}
142
142
  on:keypress={open_full_screen}
143
143
  >
144
- <Maximise />
144
+ <Maximize />
145
145
  </div>
146
146
  </div>
147
147
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/video",
3
- "version": "0.14.24",
3
+ "version": "0.15.0",
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/atoms": "^0.16.4",
15
- "@gradio/statustracker": "^0.10.16",
16
- "@gradio/upload": "^0.16.14",
17
- "@gradio/icons": "^0.12.0",
14
+ "@gradio/icons": "^0.13.0",
15
+ "@gradio/client": "^1.17.1",
16
+ "@gradio/atoms": "^0.16.5",
17
+ "@gradio/statustracker": "^0.10.17",
18
+ "@gradio/upload": "^0.16.15",
18
19
  "@gradio/utils": "^0.10.2",
19
- "@gradio/image": "^0.22.16",
20
- "@gradio/client": "^1.17.0",
21
- "@gradio/wasm": "^0.18.1"
20
+ "@gradio/wasm": "^0.18.1",
21
+ "@gradio/image": "^0.22.17"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@gradio/preview": "^0.14.0"
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
2
  import { createEventDispatcher } from "svelte";
3
- import { Play, Pause, Maximise, Undo } from "@gradio/icons";
3
+ import { Play, Pause, Maximize, Undo } from "@gradio/icons";
4
4
  import Video from "./Video.svelte";
5
5
  import VideoControls from "./VideoControls.svelte";
6
6
  import type { FileData, Client } from "@gradio/client";
@@ -168,7 +168,7 @@
168
168
  on:click={open_full_screen}
169
169
  on:keypress={open_full_screen}
170
170
  >
171
- <Maximise />
171
+ <Maximize />
172
172
  </div>
173
173
  </div>
174
174
  </div>