gradio/js/file
pngwn e1c404da11
setup npm-previews of all packages (#9118)
* add workflow

* fix pkg jsons

* workflow name

* add changeset

* fix

* add changeset

* fix build command

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2024-08-15 12:56:17 +01:00
..
shared Bugfix: Allow multiple files to be uploaded via multimodal textbox (#8608) 2024-06-26 12:14:25 -04:00
CHANGELOG.md chore: update versions (#8960) 2024-08-08 11:20:08 +01:00
Example.svelte Handle the case where examples is null for all components (#7192) 2024-01-29 16:51:22 -08:00
File.stories.svelte Improve CSS token documentation in Storybook (#6399) 2023-12-08 16:23:14 +01:00
FileUpload.stories.svelte Fix single file upload display (#7221) 2024-01-30 15:05:33 -05:00
Index.svelte Ensure all upload components have consistent upload regions. (#8803) 2024-07-17 17:37:25 +01:00
package.json setup npm-previews of all packages (#9118) 2024-08-15 12:56:17 +01:00
README.md Version 4 development branch (#5498) 2023-10-31 04:46:02 +00:00

@gradio/file

<script>
	import { BaseFile, BaseFileUpload, FilePreview, BaseExample } from "@gradio/file";
</script>

BaseFile

	export let value: FileData | FileData[] | null = null;
	export let label: string;
	export let show_label = true;
	export let selectable = false;
	export let height: number | undefined = undefined;
	export let i18n: I18nFormatter;

BaseFileUpload

	export let value: null | FileData | FileData[];
	export let label: string;
	export let show_label = true;
	export let file_count = "single";
	export let file_types: string[] | null = null;
	export let selectable = false;
	export let root: string;
	export let height: number | undefined = undefined;
	export let i18n: I18nFormatter;

FilePreview

	export let value: FileData | FileData[];
	export let selectable = false;
	export let height: number | undefined = undefined;
	export let i18n: I18nFormatter;

BaseExample

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