Gathering detailed insights and metrics for @chakra-ui/popover
Gathering detailed insights and metrics for @chakra-ui/popover
Gathering detailed insights and metrics for @chakra-ui/popover
Gathering detailed insights and metrics for @chakra-ui/popover
@chakra-ui/popper
A React component and hooks wrapper for popper.js
@zag-js/popover
Core logic for the popover widget implemented as a state machine
@chakra-ui/c-popover
Chakra UI Vue | Popover is a non modal dialog that floats around a trigger component
@hackr/chakra-ui-popover
A React component to render that renders its content in a popover
Chakra UI is a component system for building SaaS products with speed ⚡️
npm install @chakra-ui/popover
Typescript
Module System
Node Version
NPM Version
@chakra-ui/cli@3.22.0
Updated on Jul 07, 2025
@chakra-ui/panda-preset@3.22.0
Updated on Jul 07, 2025
@chakra-ui/react@3.22.0
Updated on Jul 07, 2025
@chakra-ui/charts@3.22.0
Updated on Jul 07, 2025
@chakra-ui/panda-preset@3.21.1
Updated on Jun 28, 2025
@chakra-ui/charts@3.21.1
Updated on Jun 28, 2025
TypeScript (82.19%)
MDX (16.96%)
JavaScript (0.71%)
CSS (0.07%)
HTML (0.06%)
Dockerfile (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
39,352 Stars
10,957 Commits
3,443 Forks
201 Watchers
10 Branches
694 Contributors
Updated on Jul 12, 2025
Latest Version
2.2.1
Package Id
@chakra-ui/popover@2.2.1
Unpacked Size
258.01 kB
Size
42.58 kB
File Count
105
NPM Version
9.6.7
Node Version
18.17.1
Published on
Sep 08, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
11
3
Popover is a non-modal dialog that floats around a trigger. It is used to display contextual information to the user, and should be paired with a clickable trigger element.
1yarn add @chakra-ui/popover 2 3# or 4 5npm i @chakra-ui/popover
1import { 2 Popover, 3 PopoverTrigger, 4 PopoverContent, 5 PopoverHeader, 6 PopoverBody, 7 PopoverFooter, 8 PopoverArrow, 9 PopoverCloseButton, 10} from "@chakra-ui/react"
When using this component, ensure the children passed to PopoverTrigger
is
focusable, user can tab to it using their keyboard, and it can take a ref
. It
is critical for accessibility.
A11y: When the Popover opens, focus is sent to the
PopoverContent
. When it closes, focus is returned to the trigger.
1<Popover> 2 <PopoverTrigger> 3 <Button>Trigger</Button> 4 </PopoverTrigger> 5 <PopoverContent> 6 <PopoverArrow /> 7 <PopoverCloseButton /> 8 <PopoverHeader>Confirmation!</PopoverHeader> 9 <PopoverBody>Are you sure you want to have that milkshake?</PopoverBody> 10 </PopoverContent> 11</Popover>
By default, the Popover doesn't render in a Portal. To make them display in a
portal, pass the usePortal
prop.
You might need to Inspect Element to see this in action. Notice the
PopoverContent
is rendered as a child of<body>
1<Popover usePortal> 2 <PopoverTrigger> 3 <Button>Trigger</Button> 4 </PopoverTrigger> 5 <PopoverContent> 6 <PopoverArrow /> 7 <PopoverHeader>Header</PopoverHeader> 8 <PopoverCloseButton /> 9 <PopoverBody> 10 <Button colorScheme="blue">Button</Button> 11 </PopoverBody> 12 <PopoverFooter>This is the footer</PopoverFooter> 13 </PopoverContent> 14</Popover>
No vulnerabilities found.
Reason
30 commit(s) and 15 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
7 existing vulnerabilities detected
Details
Reason
Found 5/25 approved changesets -- score normalized to 2
Reason
dependency not pinned by hash detected -- score normalized to 2
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More