frontend / 6.0.0 /group /Index.svelte
freddyaboulton's picture
Upload folder using huggingface_hub
f91cef5 verified
<script lang="ts">
import { Gradio } from "@gradio/utils";
const props = $props();
// Register the component with Gradio
const _ = new Gradio<{}, {}>(props);
const elem_id = $derived(props.elem_id || "");
const elem_classes = $derived(props.elem_classes || []);
const visible = $derived(props.visible === undefined ? true : props.visible);
</script>
<div
id={elem_id}
class="gr-group {elem_classes.join(' ')}"
class:hide={!visible}
>
<div
class="styler"
style:--block-radius="0px"
style:--block-border-width="0px"
style:--layout-gap="1px"
style:--form-gap-width="1px"
style:--button-border-width="0px"
style:--button-large-radius="0px"
style:--button-small-radius="0px"
>
<slot />
</div>
</div>
<style>
div {
border: var(--block-border-width) solid var(--border-color-primary);
background: var(--block-border-color);
border-radius: var(--block-radius);
display: flex;
flex-direction: column;
gap: var(--form-gap-width);
overflow: hidden;
}
div > :global(*:not(.absolute)) {
border: none;
border-radius: 0;
}
.hide {
display: none;
}
</style>