@gradio/video 0.14.22 → 0.14.23

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,13 @@
1
1
  # @gradio/video
2
2
 
3
+ ## 0.14.23
4
+
5
+ ### Dependency updates
6
+
7
+ - @gradio/upload@0.16.13
8
+ - @gradio/client@1.16.0
9
+ - @gradio/image@0.22.15
10
+
3
11
  ## 0.14.22
4
12
 
5
13
  ### Dependency updates
@@ -4,8 +4,8 @@ import type { WebcamOptions } from "./utils";
4
4
  import type { I18nFormatter } from "@gradio/utils";
5
5
  declare const __propDef: {
6
6
  props: {
7
- value?: FileData | null;
8
- subtitle?: FileData | null;
7
+ value?: (FileData | null) | undefined;
8
+ subtitle?: (FileData | null) | undefined;
9
9
  sources?: (["webcam"] | ["upload"] | ["webcam", "upload"] | ["upload", "webcam"]) | undefined;
10
10
  label?: string | undefined;
11
11
  show_download_button?: boolean | undefined;
@@ -31,7 +31,7 @@ declare const __propDef: {
31
31
  pause: CustomEvent<any>;
32
32
  stop: CustomEvent<undefined>;
33
33
  end: CustomEvent<any>;
34
- change: CustomEvent<any>;
34
+ change: CustomEvent<FileData | null>;
35
35
  clear?: CustomEvent<undefined> | undefined;
36
36
  drag: CustomEvent<boolean>;
37
37
  upload: CustomEvent<FileData>;
@@ -17,7 +17,7 @@ declare const __propDef: {
17
17
  is_stream: boolean | undefined;
18
18
  i18n: I18nFormatter;
19
19
  show_download_button?: boolean | undefined;
20
- value?: FileData | null;
20
+ value?: (FileData | null) | undefined;
21
21
  handle_clear?: (() => void) | undefined;
22
22
  has_change_history?: boolean | undefined;
23
23
  };
@@ -10,7 +10,7 @@ declare const __propDef: {
10
10
  handle_trim_video: (videoBlob: Blob) => void;
11
11
  processingVideo?: boolean | undefined;
12
12
  i18n: (key: string) => string;
13
- value?: FileData | null;
13
+ value?: (FileData | null) | undefined;
14
14
  show_download_button?: boolean | undefined;
15
15
  handle_clear?: (() => void) | undefined;
16
16
  has_change_history?: boolean | undefined;
@@ -3,8 +3,8 @@ import type { FileData, Client } from "@gradio/client";
3
3
  import type { I18nFormatter } from "js/core/src/gradio_helper";
4
4
  declare const __propDef: {
5
5
  props: {
6
- value?: FileData | null;
7
- subtitle?: FileData | null;
6
+ value?: (FileData | null) | undefined;
7
+ subtitle?: (FileData | null) | undefined;
8
8
  label?: string | undefined;
9
9
  show_label?: boolean | undefined;
10
10
  autoplay: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/video",
3
- "version": "0.14.22",
3
+ "version": "0.14.23",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -12,11 +12,11 @@
12
12
  "hls.js": "^1.5.13",
13
13
  "mrmime": "^2.0.0",
14
14
  "@gradio/atoms": "^0.16.3",
15
- "@gradio/client": "^1.15.7",
15
+ "@gradio/client": "^1.16.0",
16
16
  "@gradio/icons": "^0.12.0",
17
- "@gradio/image": "^0.22.14",
17
+ "@gradio/image": "^0.22.15",
18
18
  "@gradio/statustracker": "^0.10.15",
19
- "@gradio/upload": "^0.16.12",
19
+ "@gradio/upload": "^0.16.13",
20
20
  "@gradio/utils": "^0.10.2",
21
21
  "@gradio/wasm": "^0.18.1"
22
22
  },