@@ -29,6 +29,7 @@ import {clsx} from 'clsx'
29
29
import { useFeatureFlag } from '../../FeatureFlags'
30
30
31
31
import classes from './SelectPanel.module.css'
32
+ import type { PositionSettings } from '@primer/behaviors'
32
33
33
34
const CSS_MODULES_FEATURE_FLAG = 'primer_react_css_modules_ga'
34
35
@@ -66,6 +67,7 @@ export type SelectPanelProps = {
66
67
defaultOpen ?: boolean
67
68
open ?: boolean
68
69
anchorRef ?: React . RefObject < HTMLButtonElement >
70
+ anchoredPositionSettings ?: Partial < PositionSettings >
69
71
70
72
onCancel ?: ( ) => void
71
73
onClearSelection ?: undefined | ( ( ) => void )
@@ -89,6 +91,7 @@ const Panel: React.FC<SelectPanelProps> = ({
89
91
defaultOpen = false ,
90
92
open : propsOpen ,
91
93
anchorRef : providedAnchorRef ,
94
+ anchoredPositionSettings,
92
95
93
96
onCancel : propsOnCancel ,
94
97
onClearSelection : propsOnClearSelection ,
@@ -228,6 +231,7 @@ const Panel: React.FC<SelectPanelProps> = ({
228
231
floatingElementRef : dialogRef ,
229
232
side : 'outside-bottom' ,
230
233
align : 'start' ,
234
+ ...anchoredPositionSettings ,
231
235
} ,
232
236
[ internalOpen , anchorRef . current , dialogRef . current ] ,
233
237
)
@@ -267,7 +271,6 @@ const Panel: React.FC<SelectPanelProps> = ({
267
271
border : 'none' ,
268
272
padding : 0 ,
269
273
color : 'fg.default' ,
270
- '&[open]' : { display : 'flex' } , // to fit children
271
274
272
275
'&[data-variant="anchored"], &[data-variant="full-screen"]' : {
273
276
margin : 0 ,
@@ -309,8 +312,13 @@ const Panel: React.FC<SelectPanelProps> = ({
309
312
'--max-height' : maxHeightValue ,
310
313
'--position-top' : `${ position ?. top ?? 0 } px` ,
311
314
'--position-left' : `${ position ?. left ?? 0 } px` ,
315
+ visibility : internalOpen ? 'visible' : 'hidden' ,
316
+ display : 'flex' ,
312
317
} as React . CSSProperties )
313
- : undefined
318
+ : {
319
+ visibility : internalOpen ? 'visible' : 'hidden' ,
320
+ display : 'flex' ,
321
+ }
314
322
}
315
323
className = { enabled ? classes . Overlay : undefined }
316
324
{ ...props }
0 commit comments