Upload folder using huggingface_hub
Browse files
6.0.0-dev.6/textbox/shared/Textbox.svelte
CHANGED
|
@@ -7,14 +7,13 @@
|
|
| 7 |
} from "svelte";
|
| 8 |
import { BlockTitle, IconButton, IconButtonWrapper } from "@gradio/atoms";
|
| 9 |
import { Copy, Check, Send, Square } from "@gradio/icons";
|
| 10 |
-
import { fade } from "svelte/transition";
|
| 11 |
import type { SelectData, CopyData } from "@gradio/utils";
|
| 12 |
import type { InputHTMLAttributes } from "../types";
|
| 13 |
|
| 14 |
export let value = "";
|
| 15 |
export let value_is_output = false;
|
| 16 |
export let lines = 1;
|
| 17 |
-
export let placeholder = "
|
| 18 |
export let label: string;
|
| 19 |
export let info: string | undefined = undefined;
|
| 20 |
export let disabled = false;
|
|
|
|
| 7 |
} from "svelte";
|
| 8 |
import { BlockTitle, IconButton, IconButtonWrapper } from "@gradio/atoms";
|
| 9 |
import { Copy, Check, Send, Square } from "@gradio/icons";
|
|
|
|
| 10 |
import type { SelectData, CopyData } from "@gradio/utils";
|
| 11 |
import type { InputHTMLAttributes } from "../types";
|
| 12 |
|
| 13 |
export let value = "";
|
| 14 |
export let value_is_output = false;
|
| 15 |
export let lines = 1;
|
| 16 |
+
export let placeholder = "";
|
| 17 |
export let label: string;
|
| 18 |
export let info: string | undefined = undefined;
|
| 19 |
export let disabled = false;
|