mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
767643fdec
* Fix a bug in example textbox rendering when it is initially invisible * add changeset --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Freddy Boulton <alfonsoboulton@gmail.com>
46 lines
812 B
Svelte
46 lines
812 B
Svelte
<script lang="ts">
|
|
import { onMount } from "svelte";
|
|
|
|
export let value: string | null;
|
|
export let type: "gallery" | "table";
|
|
export let selected = false;
|
|
|
|
let size: number;
|
|
let el: HTMLDivElement;
|
|
|
|
function set_styles(element: HTMLElement, el_width: number): void {
|
|
element.style.setProperty(
|
|
"--local-text-width",
|
|
`${el_width && el_width < 150 ? el_width : 200}px`
|
|
);
|
|
element.style.whiteSpace = "unset";
|
|
}
|
|
|
|
onMount(() => {
|
|
set_styles(el, size);
|
|
});
|
|
</script>
|
|
|
|
<div
|
|
bind:clientWidth={size}
|
|
bind:this={el}
|
|
class:table={type === "table"}
|
|
class:gallery={type === "gallery"}
|
|
class:selected
|
|
>
|
|
{value ? value : ""}
|
|
</div>
|
|
|
|
<style>
|
|
.gallery {
|
|
padding: var(--size-1) var(--size-2);
|
|
}
|
|
|
|
div {
|
|
overflow: hidden;
|
|
min-width: var(--local-text-width);
|
|
|
|
white-space: nowrap;
|
|
}
|
|
</style>
|