Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
detect-element-overflow
Advanced tools
A function that tells you whether a given element is overflowing its container or not. Useful for creating dropdowns and tooltips.
A function that tells you whether a given element is overflowing its container or not. Useful for creating dropdowns and tooltips.
npm install detect-element-overflow
or yarn add detect-element-overflow
.import detectElementOverflow from 'detect-element-overflow'
.const collisions = detectElementOverflow(child, parent);
Detect-Element-Overflow returns an object with getter functions described below.
Attribute name | Description | Example values |
---|---|---|
collidedTop | Whether or not the child element collided with the top parent's border. | true |
collidedBottom | Whether or not the child element collided with the bottom parent's border. | true |
collidedLeft | Whether or not the child element collided with the left parent's border. | true |
collidedRight | Whether or not the child element collided with the right parent's border. | true |
overflowTop | How many pixels of the child have crossed the top parent's border. Negative values specify how many pixels are between the child and the top parent's border. | 20 , -15 |
overflowBottom | How many pixels of the child have crossed the bottom parent's border. Negative values specify how many pixels are between the child and the bottom parent's border. | 20 , -15 |
overflowLeft | How many pixels of the child have crossed the left parent's border. Negative values specify how many pixels are between the child and the left parent's border. | 20 , -15 |
overflowRight | How many pixels of the child have crossed the right parent's border. Negative values specify how many pixels are between the child and the right parent's border. | 20 , -15 |
The MIT License.
Wojciech Maj |
FAQs
A function that tells you whether a given element is overflowing its container or not. Useful for creating dropdowns and tooltips.
We found that detect-element-overflow demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.