gradio/js/textbox
2024-04-19 18:41:40 -04:00
..
shared Quick Image + Text Component Fixes (#6635) 2023-12-04 13:03:32 -08:00
CHANGELOG.md chore: update versions (#7992) 2024-04-18 18:09:10 +00:00
Example.svelte Handle the case where examples is null for all components (#7192) 2024-01-29 16:51:22 -08:00
Index.svelte Add max_file_size parameter to launch() that limits the size of files that can be uploaded in the Gradio app (#7909) 2024-04-19 15:38:53 -04:00
package.json make gradio dev tools a local dependency rather than bundling (#8066) 2024-04-19 18:41:40 -04:00
README.md Version 4 development branch (#5498) 2023-10-31 04:46:02 +00:00
Textbox.stories.svelte Version 4 development branch (#5498) 2023-10-31 04:46:02 +00:00
Textbox.test.ts Version 4 development branch (#5498) 2023-10-31 04:46:02 +00:00
TextboxExample.stories.svelte Handle the case where examples is null for all components (#7192) 2024-01-29 16:51:22 -08:00

@gradio/textbox

<script>
    import { BaseTextbox, BaseExample } from "@gradio/textbox";
</script>

BaseTextbox

	export let value = "";
	export let value_is_output = false;
	export let lines = 1;
	export let placeholder = "Type here...";
	export let label: string;
	export let info: string | undefined = undefined;
	export let disabled = false;
	export let show_label = true;
	export let container = true;
	export let max_lines: number;
	export let type: "text" | "password" | "email" = "text";
	export let show_copy_button = false;
	export let rtl = false;
	export let autofocus = false;
	export let text_align: "left" | "right" | undefined = undefined;
	export let autoscroll = true;

BaseExample

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