gradio-pr-bot commited on
Commit
2b6729a
·
verified ·
1 Parent(s): b43ad88

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. 6.4.0/html/Index.svelte +1 -0
  2. 6.4.0/html/types.ts +1 -0
6.4.0/html/Index.svelte CHANGED
@@ -36,6 +36,7 @@
36
  elem_id={gradio.shared.elem_id}
37
  elem_classes={gradio.shared.elem_classes}
38
  container={gradio.shared.container}
 
39
  overflow_behavior="visible"
40
  >
41
  {#if gradio.shared.show_label && gradio.props.buttons && gradio.props.buttons.length > 0}
 
36
  elem_id={gradio.shared.elem_id}
37
  elem_classes={gradio.shared.elem_classes}
38
  container={gradio.shared.container}
39
+ padding={gradio.props.padding !== false}
40
  overflow_behavior="visible"
41
  >
42
  {#if gradio.shared.show_label && gradio.props.buttons && gradio.props.buttons.length > 0}
6.4.0/html/types.ts CHANGED
@@ -12,6 +12,7 @@ export interface HTMLProps {
12
  props: Record<string, any>;
13
  component_class_name: string;
14
  buttons: (string | CustomButton)[] | null;
 
15
  }
16
 
17
  export interface HTMLEvents {
 
12
  props: Record<string, any>;
13
  component_class_name: string;
14
  buttons: (string | CustomButton)[] | null;
15
+ padding: boolean;
16
  }
17
 
18
  export interface HTMLEvents {