Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
popper-max-size-modifier
Advanced tools
A Popper.js modifier to change the size of your popper to fit it within the available viewport space.
A Popper.js modifier to change the size of your popper to fit it within the available viewport space.
# With npm
npm i popper-max-size-modifier
# With Yarn
yarn add popper-max-size-modifier
https://codesandbox.io/s/great-tesla-3roz7
import {createPopper} from '@popperjs/core';
import maxSize from 'popper-max-size-modifier';
// Create your own apply modifier that adds the styles to the state
const applyMaxSize = {
name: 'applyMaxSize',
enabled: true,
phase: 'beforeWrite',
requires: ['maxSize'],
fn({state}) {
// The `maxSize` modifier provides this data
const {width, height} = state.modifiersData.maxSize;
state.styles.popper = {
...state.styles.popper,
maxWidth: `${width}px`,
maxHeight: `${height}px`
};
}
};
createPopper(reference, popper, {
modifiers: [maxSize, applyMaxSize]
});
Sometimes you may want the flip
modifier to take precedence in cases where the
maxSize
modifier will make the popper too small (e.g. a minimum acceptable
size):
// Minimum acceptable size is 100px
`${Math.max(100, width)}px`;
`${Math.max(100, height)}px`;
All
detectOverflow
options
can be passed.
createPopper(reference, popper, {
modifiers: [
{
...maxSize,
options: {
boundary: customBoundaryElement,
padding: 20
}
},
applyMaxSize
]
});
The source is located in the root package at
src/modifiers/maxSize.js
.
FAQs
A Popper.js modifier to change the size of your popper to fit it within the available viewport space.
We found that popper-max-size-modifier 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.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.