File tree Expand file tree Collapse file tree 1 file changed +29
-1
lines changed
web/renderer/components/EditCellInput Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -49,11 +49,39 @@ export default function Input(props: Props) {
49
49
outerClassName = { css . editSelect }
50
50
mono
51
51
small
52
+ isSearchable
53
+ menuPortalTarget = { document . body }
52
54
customStyles = { s => {
53
55
return {
54
56
...s ,
57
+ control : styles => {
58
+ return {
59
+ ...styles ,
60
+ minWidth : "100px" ,
61
+ width : "100%" ,
62
+ } ;
63
+ } ,
64
+ menu : styles => {
65
+ return {
66
+ ...styles ,
67
+ width : "max-content" ,
68
+ minWidth : "100%" ,
69
+ } ;
70
+ } ,
55
71
singleValue : styles => {
56
- return { ...styles , marginBottom : "6px" } ;
72
+ return {
73
+ ...styles ,
74
+ marginBottom : "6px" ,
75
+ overflow : "visible" ,
76
+ textOverflow : "clip" ,
77
+ whiteSpace : "nowrap" ,
78
+ } ;
79
+ } ,
80
+ option : styles => {
81
+ return {
82
+ ...styles ,
83
+ whiteSpace : "nowrap" ,
84
+ } ;
57
85
} ,
58
86
} ;
59
87
} }
You can’t perform that action at this time.
0 commit comments