Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
vaul-svelte
Advanced tools
Vaul-Svelte is an unstyled drawer component for Svelte that can be used as a Dialog replacement on tablet and mobile devices. It uses Bits' Dialog primitive under the hood and is inspired by this tweet.
This is a port of Vaul for React, which was created by Emil Kowalski.
To start using the library, install it in your project:
npm install vaul-svelte
Use the drawer in your app.
<script>
import { Drawer } from "vaul-svelte";
</script>
<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 StackBlitz:
Contains all parts of a dialog. Use shouldScaleBackground
to enable background scaling, it requires an element with [data-vaul-drawer-wrapper]
data attribute to scale its background.
Can be controlled by binding to the open
prop, or using theonOpenChange
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.
direction
: Direction of the drawer. Can be top
, bottom
, left
, or right
. Defaults to bottom
.
backgroundColor
: Background color of the body when the drawer is open and shouldScaleBackground
is true. Defaults to black.
[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.
This project is supported by the following beautiful people/organizations:
Published under the MIT license.
Made by @huntabyte and community 💛
FAQs
![](static/og.jpg)
We found that vaul-svelte demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.