You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* chore: fix hero props table (#12562)
* fix: update tree pattern expand icon direction (#12554)
* fix(tree-view): update expand icon direction
* fix: update dls tree and tree table icons, too
* chore: bump to latest core
* chore: fix yarn.lock
* chore(deps): Bump docs framework (#12583)
Andrew reports that the wrong Felt class is being added to the html tag. I bumped the docs framework to one that has the correct class.
* fix(Popover): fixed focus trapped on hoverable trigger (#12591)
* fix(Popover): fixed focus trapped on hoverable trigger
* Added deprecation to hoverable
---------
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>
Co-authored-by: Rebecca Alpert <ralpert@redhat.com>
Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Copy file name to clipboardExpand all lines: packages/react-core/src/components/Popover/examples/Popover.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,11 @@ By default, the `appendTo` prop of the popover will append to the document body
25
25
26
26
### Hoverable
27
27
28
-
```ts file="./PopoverHover.tsx"
28
+
Pass the `triggerAction="hover"` property to make a `<Popover>` that is triggered via hover and focus rather than on click. When using a hoverable Popover, you **must not** include any interactive or semantic content (e.g. buttons, links, headings, lists, etc), as focus is not intended to enter a hoverable `<Popover>`. Including such content may cause an inaccessible UI for users who are not able to reach the content when navigating via assistive tech.
29
+
30
+
It is instead recommended to use our [tooltip component](/components/tooltip).
0 commit comments