File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @gradio/column " : patch
3
+ " gradio " : patch
4
+ ---
5
+
6
+ fix: Remove gap parametger from gr.Column
Original file line number Diff line number Diff line change 4
4
import type { Gradio } from " @gradio/utils" ;
5
5
6
6
export let scale: number | null = null ;
7
- export let gap = true ;
8
7
export let min_width = 0 ;
9
8
export let elem_id = " " ;
10
9
export let elem_classes: string [] = [];
18
17
<div
19
18
id ={elem_id }
20
19
class ="column {elem_classes .join (' ' )}"
21
- class:gap
22
20
class:compact ={variant === " compact" }
23
21
class:panel ={variant === " panel" }
24
22
class:hide ={! visible }
45
43
display : flex ;
46
44
position : relative ;
47
45
flex-direction : column ;
46
+ gap : var (--layout-gap );
48
47
}
49
48
50
49
div > :global(* ),
51
50
div > :global(.form > * ) {
52
51
width : var (--size-full );
53
52
}
54
53
55
- .gap {
56
- gap : var (--layout-gap );
57
- }
58
-
59
54
.hide {
60
55
display : none ;
61
56
}
You can’t perform that action at this time.
0 commit comments