gradio-pr-bot commited on
Commit
b7ac429
·
verified ·
1 Parent(s): 147dd06

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. 6.25.0/box/Index.svelte +20 -0
  2. 6.25.0/box/package.json +29 -0
6.25.0/box/Index.svelte ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <script lang="ts">
2
+ import type { Snippet } from "svelte";
3
+ import { Block } from "@gradio/atoms";
4
+
5
+ let {
6
+ elem_id,
7
+ elem_classes,
8
+ visible = true,
9
+ children
10
+ }: {
11
+ elem_id: string;
12
+ elem_classes: string[];
13
+ visible?: boolean | "hidden";
14
+ children?: Snippet;
15
+ } = $props();
16
+ </script>
17
+
18
+ <Block {elem_id} {elem_classes} {visible} explicit_call>
19
+ {@render children?.()}
20
+ </Block>
6.25.0/box/package.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "@gradio/box",
3
+ "version": "0.2.34",
4
+ "description": "Gradio UI packages",
5
+ "type": "module",
6
+ "author": "",
7
+ "license": "ISC",
8
+ "private": false,
9
+ "main_changeset": true,
10
+ "exports": {
11
+ ".": {
12
+ "gradio": "./Index.svelte",
13
+ "svelte": "./dist/Index.svelte",
14
+ "types": "./dist/Index.svelte.d.ts"
15
+ },
16
+ "./package.json": "./package.json"
17
+ },
18
+ "dependencies": {
19
+ "@gradio/atoms": "workspace:^"
20
+ },
21
+ "peerDependencies": {
22
+ "svelte": "^5.48.0"
23
+ },
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/gradio-app/gradio.git",
27
+ "directory": "js/box"
28
+ }
29
+ }