gradio/js/multimodaltextbox
pngwn 2b6cbf2590
Fix published package exports (#9163)
* rename

* save patch

* fix everything

* format

* rm file

* fix stuff

* tweaks

* tweaks

* tweaks

* tweaks

* tweaks

* asd

* asd

* asd

* asd

* asd

* asd

* asd

* fix

* Fix scripts/run_lite.sh and scripts/build_lite.sh (#9170)

* fixes

* fixes

* asd

* asd

* asd

* review comments

* fiux types

* fiux types

* make fileexpolorer public

* format

* lint

* lint

---------

Co-authored-by: Yuichiro Tachibana (Tsuchiya) <t.yic.yt@gmail.com>
2024-08-22 16:38:45 +00:00
..
shared Allow drag and replace image in gr.Image and Multimodal textbox (#9031) 2024-08-19 15:46:54 +01:00
CHANGELOG.md chore: update versions (#9072) 2024-08-21 11:35:46 -07:00
Example.svelte Fix Chatbot Multimodal Examples (#8899) 2024-07-29 10:27:18 -04:00
Index.svelte Allow drag and replace image in gr.Image and Multimodal textbox (#9031) 2024-08-19 15:46:54 +01:00
MultimodalTextbox.stories.svelte Multimodal Textbox (Chat Input Component) (#7420) 2024-03-19 13:16:05 -07:00
MultimodalTextbox.test.ts Fix published package exports (#9163) 2024-08-22 16:38:45 +00:00
MultimodalTextboxExample.stories.svelte Multimodal Textbox (Chat Input Component) (#7420) 2024-03-19 13:16:05 -07:00
package.json Fix published package exports (#9163) 2024-08-22 16:38:45 +00:00
README.md Multimodal Textbox (Chat Input Component) (#7420) 2024-03-19 13:16:05 -07:00

@gradio/multimodaltextbox

<script>
    import { BaseMultimodalTextbox, BaseExample } from "@gradio/multimodaltextbox";
</script>

BaseMultimodalTextbox

	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;