2
0
mirror of https://github.com/gradio-app/gradio.git synced 2025-01-18 10:44:33 +08:00
gradio/js/image
Abubakar Abid 8dd6f4bc19
Handle the case where examples is null for all components ()
* handle null examples

* add changeset

* add changeset

* lint

* merge conflict

* fixes

* add changeset

* stories

* feedback

* examples

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2024-01-29 16:51:22 -08:00
..
shared Handle the case where examples is null for all components () 2024-01-29 16:51:22 -08:00
CHANGELOG.md chore: update versions () 2024-01-25 16:10:24 -08:00
Example.svelte Handle the case where examples is null for all components () 2024-01-29 16:51:22 -08:00
Image.stories.svelte
Image.test.ts
ImageExample.stories.svelte Handle the case where examples is null for all components () 2024-01-29 16:51:22 -08:00
Index.svelte Fix functional tests () 2024-01-04 15:39:16 -08:00
package.json chore: update versions () 2024-01-25 16:10:24 -08:00
README.md

@gradio/image

<script>
	import { BaseImageUploader, BaseStaticImage, Webcam, BaseExample } from "@gradio/image";
</script>

BaseImageUploader

	export let sources: ("clipboard" | "webcam" | "upload")[] = [
		"upload",
		"clipboard",
		"webcam"
	];
	export let streaming = false;
	export let pending = false;
	export let mirror_webcam: boolean;
	export let selectable = false;
	export let root: string;
	export let i18n: I18nFormatter;

BaseStaticImage

	export let value: null | FileData;
	export let label: string | undefined = undefined;
	export let show_label: boolean;
	export let show_download_button = true;
	export let selectable = false;
	export let show_share_button = false;
	export let root: string;
	export let i18n: I18nFormatter;

Webcam

	export let streaming = false;
	export let pending = false;

	export let mode: "image" | "video" = "image";
	export let mirror_webcam: boolean;
	export let include_audio: boolean;
	export let i18n: I18nFormatter;

BaseExample

	export let value: string;
	export let samples_dir: string;
	export let type: "gallery" | "table";
	export let selected = false;