gradio/js/textbox
pngwn 70b45f4587
chore: update versions (#8777)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-07-22 13:28:00 -07:00
..
shared chore(deps): update dependency eslint to v9 (#8121) 2024-05-03 09:57:08 +01:00
CHANGELOG.md chore: update versions (#8777) 2024-07-22 13:28:00 -07: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 chore: update versions (#8777) 2024-07-22 13:28:00 -07: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;