gradio/js/textbox
aliabid94 ec95b0212b
Fix stopping chat interface when stop button is clicked (#9626)
* changes

* add changeset

* changes

* changes

* fix test

---------

Co-authored-by: Ali Abid <aliabid94@gmail.com>
Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
2024-10-09 14:00:58 -07:00
..
shared Fix stopping chat interface when stop button is clicked (#9626) 2024-10-09 14:00:58 -07:00
CHANGELOG.md i am changesets now (#9612) 2024-10-09 13:46:26 +01:00
Example.svelte Handle the case where examples is null for all components (#7192) 2024-01-29 16:51:22 -08:00
Index.svelte 5.0 dev -> main (#8843) 2024-10-08 22:17:17 -07:00
package.json i am changesets now (#9612) 2024-10-09 13:46:26 +01:00
README.md Adding maxlength attribute handling of textarea and input HTML element for the gr.TextBox() component via a max_length parameter (#9185) 2024-08-27 23:42:05 +00:00
Textbox.stories.svelte Adding maxlength attribute handling of textarea and input HTML element for the gr.TextBox() component via a max_length parameter (#9185) 2024-08-27 23:42:05 +00:00
Textbox.test.ts Fix published package exports (#9163) 2024-08-22 16:38:45 +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;
	export let max_length: number | undefined = undefined;

BaseExample

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