gradio/js/textbox
renovate[bot] f5b710c919
chore(deps): update dependency eslint to v9 (#8121)
* chore(deps): update dependency eslint to v9

* update deps + fix things

* add changeset

* fix preview

* add changeset

* lockfile

* format

* add changeset

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: pngwn <hello@pngwn.io>
Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2024-05-03 09:57:08 +01:00
..
shared chore(deps): update dependency eslint to v9 (#8121) 2024-05-03 09:57:08 +01:00
CHANGELOG.md chore: update versions (#8069) 2024-04-25 23:08:27 +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 chore: update versions (#8069) 2024-04-25 23:08:27 +00: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;