
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
@chakra-ui/clickable
Advanced tools
React hook and component that implements native button interactions
Supply Chain Security
Vulnerability
Quality
Maintenance
License
React hook that implements all the interactions of a native button
component
with support for making it focusable even if it is disabled.
It can be used with both native button elements or other elements (like div
).
import { useClickable } from "@chakra-ui/clickable"
// create a clickable primitive
const Clickable = (props) => {
const clickable = useClickable(props)
return <chakra.button display="inline-flex" {...clickable} />
}
// use the clickable primitive
const Example = () => (
<Clickable
as="div"
onClick={(event) => {
alert("clicked")
}}
_active={{ bg: "blue", color: "white" }}
_disabled={{ opacity: 0.4, pointerEvents: "none" }}
>
Clickable
</Clickable>
)
FAQs
React hook and component that implements native button interactions
The npm package @chakra-ui/clickable receives a total of 468,633 weekly downloads. As such, @chakra-ui/clickable popularity was classified as popular.
We found that @chakra-ui/clickable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.