frontend / 6.4.0 /file /Example.svelte
gradio-pr-bot's picture
Upload folder using huggingface_hub
7192b20 verified
<script lang="ts">
import type { FileData } from "@gradio/client";
let {
value,
type,
selected = false
}: {
value: FileData | null;
type: "gallery" | "table";
selected: boolean;
} = $props();
</script>
<div
class:table={type === "table"}
class:gallery={type === "gallery"}
class:selected
>
{value ? (Array.isArray(value) ? value.join(", ") : value) : ""}
</div>
<style>
div {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.gallery {
display: flex;
align-items: center;
cursor: pointer;
padding: var(--size-1) var(--size-2);
text-align: left;
}
</style>