frontend / 6.5.0 /json /Example.svelte
gradio-pr-bot's picture
Upload folder using huggingface_hub
2197af3 verified
<script lang="ts">
import JSON from "./shared/JSON.svelte";
let {
value,
theme_mode = "system" as "system" | "light" | "dark",
type,
selected = false
}: {
value: any;
theme_mode?: "system" | "light" | "dark";
type: "gallery" | "table";
selected?: boolean;
} = $props();
let show_indices = $state(false);
let label_height = $state(0);
</script>
<div
class="container"
class:table={type === "table"}
class:gallery={type === "gallery"}
class:selected
class:border={value}
>
{#if value}
<JSON
{value}
open={true}
{theme_mode}
{show_indices}
{label_height}
interactive={false}
show_copy_button={false}
/>
{/if}
</div>
<style>
.container :global(img) {
width: 100%;
height: 100%;
}
.container.selected {
border-color: var(--border-color-accent);
}
.border.table {
border: 1px solid var(--border-color-primary);
}
.container.table {
margin: 0 auto;
border-radius: var(--radius-lg);
overflow: hidden;
width: 100%;
height: 100%;
max-width: var(--size-40);
max-height: var(--size-20);
object-fit: cover;
}
.container.gallery {
width: 100%;
max-width: 100%;
object-fit: cover;
max-width: var(--size-40);
max-height: var(--size-20);
overflow: hidden;
}
</style>