Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@xelene/vaul-with-scroll-fix
Advanced tools
https://github.com/emilkowalski/vaul/assets/36730035/fdf8c5e8-ade8-433b-8bb0-4ce10e722516
Vaul is an unstyled drawer component for React that can be used as a Dialog replacement on tablet and mobile devices. You can read about why and how it was built here.
To start using the library, install it in your project:,
npm install vaul
Use the drawer in your app.
import { Drawer } from 'vaul';
function MyComponent() {
return (
<Drawer.Root>
<Drawer.Trigger>Open</Drawer.Trigger>
<Drawer.Portal>
<Drawer.Content>
<p>Content</p>
</Drawer.Content>
<Drawer.Overlay />
</Drawer.Portal>
</Drawer.Root>
);
}
Play around with the examples on codesandbox:
Contains all parts of a dialog. Use shouldScaleBackground
to enable background scaling, it requires an element with [vaul-drawer-wrapper]
data attribute to scale its background.
Can be controlled with the value
and onOpenChange
props. Can be opened by default via the open
prop.
Additional props:
closeThreshold
: Number between 0 and 1 that determines when the drawer should be closed. Example: threshold of 0.5 would close the drawer if the user swiped for 50% of the height of the drawer or more.
scrollLockTimeout
: Duration for which the drawer is not draggable after scrolling content inside of the drawer. Defaults to 500ms
snapPoints
: Array of numbers from 0 to 100 that corresponds to % of the screen a given snap point should take up. Should go from least visible. Example [0.2, 0.5, 0.8]
. You can also use px values, which doesn't take screen height into account.
fadeFromIndex
: Index of a snapPoint
from which the overlay fade should be applied. Defaults to the last snap point.
modal
: When false
it allows to interact with elements outside of the drawer without closing it. Defaults totrue
.
direction
: Direction of the drawer. Can be top
or bottom
, left
, right
. Defaults to bottom
.
preventScrollRestoration
: When true
it prevents scroll restoration when the drawer is closed after a navigation happens inside of it. Defaults to true
.
disablePreventScroll
: When true
scroll prevention mechanism will be disabled. Scroll prevention ensures that page will not scroll on mobile when opening drawer. However this mechanism gets confused when drawer has an input with autofocus and therefore opens simulataneosly with touch keyboard. Defaults to true
. modal
set to false
also disables it.
[data-vaul-no-drag]
: When interacting with an element with this data attribute, the drawer won't be dragged.
The button that opens the dialog. Props.
Content that should be rendered in the drawer. Props.
A layer that covers the inert portion of the view when the dialog is open. Props.
An accessible title to be announced when the dialog is opened. Props.
An optional accessible description to be announced when the dialog is opened. Props.
The button that closes the dialog. Props.
Portals your drawer into the body.
FAQs
Drawer component for React.
The npm package @xelene/vaul-with-scroll-fix receives a total of 5,747 weekly downloads. As such, @xelene/vaul-with-scroll-fix popularity was classified as popular.
We found that @xelene/vaul-with-scroll-fix demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.