@gradio/video 0.10.1 → 0.10.3

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,34 @@
1
1
  # @gradio/video
2
2
 
3
+ ## 0.10.3
4
+
5
+ ### Features
6
+
7
+ - [#9118](https://github.com/gradio-app/gradio/pull/9118) [`e1c404d`](https://github.com/gradio-app/gradio/commit/e1c404da1143fb52b659d03e028bdba1badf443d) - setup npm-previews of all packages. Thanks @pngwn!
8
+ - [#9102](https://github.com/gradio-app/gradio/pull/9102) [`efdc323`](https://github.com/gradio-app/gradio/commit/efdc3231a7bde38cfe45d10086d0d36a24c1b9b4) - Initial SSR refactor. Thanks @pngwn!
9
+
10
+ ### Dependency updates
11
+
12
+ - @gradio/utils@0.6.0
13
+ - @gradio/upload@0.12.3
14
+ - @gradio/atoms@0.8.0
15
+ - @gradio/client@1.5.1
16
+ - @gradio/statustracker@0.7.5
17
+ - @gradio/wasm@0.13.0
18
+ - @gradio/icons@0.7.1
19
+ - @gradio/image@0.15.0
20
+
21
+ ## 0.10.2
22
+
23
+ ### Dependency updates
24
+
25
+ - @gradio/atoms@0.7.9
26
+ - @gradio/statustracker@0.7.4
27
+ - @gradio/client@1.5.0
28
+ - @gradio/icons@0.7.0
29
+ - @gradio/upload@0.12.2
30
+ - @gradio/image@0.14.0
31
+
3
32
  ## 0.10.1
4
33
 
5
34
  ### Dependency updates
package/Video.test.ts CHANGED
@@ -10,7 +10,7 @@ import {
10
10
  } from "vitest";
11
11
  import { spy, spyOn } from "tinyspy";
12
12
  import { cleanup, render } from "@gradio/tootils";
13
- import { setupi18n } from "../app/src/i18n";
13
+ import { setupi18n } from "../core/src/i18n";
14
14
 
15
15
  import Video from "./Index.svelte";
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/video",
3
- "version": "0.10.1",
3
+ "version": "0.10.3",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -10,17 +10,17 @@
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.8",
14
- "@gradio/icons": "^0.6.1",
15
- "@gradio/statustracker": "^0.7.3",
16
- "@gradio/client": "^1.4.0",
17
- "@gradio/utils": "^0.5.2",
18
- "@gradio/upload": "^0.12.1",
19
- "@gradio/wasm": "^0.12.0",
20
- "@gradio/image": "^0.13.1"
13
+ "@gradio/atoms": "^0.8.0",
14
+ "@gradio/client": "^1.5.1",
15
+ "@gradio/icons": "^0.7.1",
16
+ "@gradio/statustracker": "^0.7.5",
17
+ "@gradio/image": "^0.15.0",
18
+ "@gradio/utils": "^0.6.0",
19
+ "@gradio/wasm": "^0.13.0",
20
+ "@gradio/upload": "^0.12.3"
21
21
  },
22
22
  "devDependencies": {
23
- "@gradio/preview": "^0.10.2"
23
+ "@gradio/preview": "^0.11.0"
24
24
  },
25
25
  "exports": {
26
26
  ".": "./index.ts",
@@ -30,5 +30,10 @@
30
30
  "./package.json": "./package.json"
31
31
  },
32
32
  "main": "index.ts",
33
- "main_changeset": true
33
+ "main_changeset": true,
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "git+https://github.com/gradio-app/gradio.git",
37
+ "directory": "js/video"
38
+ }
34
39
  }
@@ -7,7 +7,7 @@
7
7
  import { DownloadLink } from "@gradio/wasm/svelte";
8
8
 
9
9
  import Player from "./Player.svelte";
10
- import type { I18nFormatter } from "js/app/src/gradio_helper";
10
+ import type { I18nFormatter } from "js/core/src/gradio_helper";
11
11
 
12
12
  export let value: FileData | null = null;
13
13
  export let subtitle: FileData | null = null;