Skip to content

Commit 2b05aad

Browse files
camertronfrancinelucca
andauthoredJan 30, 2025··
[SelectPanel] Fix experimental SelectPanel anchoring behavior (#5593)
* Fix experimental SelectPanel anchoring behavior * Simplify * Add changeset * Revert "[Accessibility][Storybook] Add aria-labels to the multiple item progr…" This reverts commit 65f89fe. --------- Co-authored-by: Marie Lucca <40550942+francinelucca@users.noreply.github.com>
1 parent 124f88a commit 2b05aad

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed
 

‎.changeset/gentle-planets-grab.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@primer/react": patch
3+
---
4+
5+
Fix experimental SelectPanel anchoring behavior

‎packages/react/src/experimental/SelectPanel2/SelectPanel.tsx

+10-2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import {clsx} from 'clsx'
2929
import {useFeatureFlag} from '../../FeatureFlags'
3030

3131
import classes from './SelectPanel.module.css'
32+
import type {PositionSettings} from '@primer/behaviors'
3233

3334
const CSS_MODULES_FEATURE_FLAG = 'primer_react_css_modules_ga'
3435

@@ -66,6 +67,7 @@ export type SelectPanelProps = {
6667
defaultOpen?: boolean
6768
open?: boolean
6869
anchorRef?: React.RefObject<HTMLButtonElement>
70+
anchoredPositionSettings?: Partial<PositionSettings>
6971

7072
onCancel?: () => void
7173
onClearSelection?: undefined | (() => void)
@@ -89,6 +91,7 @@ const Panel: React.FC<SelectPanelProps> = ({
8991
defaultOpen = false,
9092
open: propsOpen,
9193
anchorRef: providedAnchorRef,
94+
anchoredPositionSettings,
9295

9396
onCancel: propsOnCancel,
9497
onClearSelection: propsOnClearSelection,
@@ -228,6 +231,7 @@ const Panel: React.FC<SelectPanelProps> = ({
228231
floatingElementRef: dialogRef,
229232
side: 'outside-bottom',
230233
align: 'start',
234+
...anchoredPositionSettings,
231235
},
232236
[internalOpen, anchorRef.current, dialogRef.current],
233237
)
@@ -267,7 +271,6 @@ const Panel: React.FC<SelectPanelProps> = ({
267271
border: 'none',
268272
padding: 0,
269273
color: 'fg.default',
270-
'&[open]': {display: 'flex'}, // to fit children
271274

272275
'&[data-variant="anchored"], &[data-variant="full-screen"]': {
273276
margin: 0,
@@ -309,8 +312,13 @@ const Panel: React.FC<SelectPanelProps> = ({
309312
'--max-height': maxHeightValue,
310313
'--position-top': `${position?.top ?? 0}px`,
311314
'--position-left': `${position?.left ?? 0}px`,
315+
visibility: internalOpen ? 'visible' : 'hidden',
316+
display: 'flex',
312317
} as React.CSSProperties)
313-
: undefined
318+
: {
319+
visibility: internalOpen ? 'visible' : 'hidden',
320+
display: 'flex',
321+
}
314322
}
315323
className={enabled ? classes.Overlay : undefined}
316324
{...props}

0 commit comments

Comments
 (0)
Please sign in to comment.