Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@takuma-ru/vue-swipe-modal
Advanced tools
Modal window that can be swiped to close.(Swipeable Bottom Sheet)
⚠️ WARN ⚠️
Due to the eol of vue2, vue2 is no longer supported. vue2 can be used with v4.0.7
or earlier, but we are not responsible for any problems that may occur.
vue-swipe-modal-docs.takumaru.dev
npm i @takuma-ru/vue-swipe-modal@^5.0.0
npm i @takuma-ru/vue-swipe-modal@^4.0.0 @vue/composition-api
Import and use the modal with the vue file you want to use.
<script lang="ts" setup>
import { ref } from "vue";
import { SwipeModal } from "@takuma-ru/vue-swipe-modal";
const isOpen = ref(false);
</script>
<template>
<button @click="isOpen = true">
Open modal
</button>
<SwipeModal
v-model="isOpen"
snap-point="auto"
>
<button @click="isOpen = false">
Close modal
</button>
Modal content
</SwipeModal>
</template>
<style lang="scss" scoped>
:deep(.modal-style) {
box-sizing: border-box;
width: 100%;
color: white;
background-color: #1d1b20;
border-radius: 1rem 1rem 0 0;
@media (prefers-color-scheme: light) {
color: black;
background-color: #f7f2fa;
box-shadow: 0 1px 4px 0 rgb(0 0 0 / 37%);
}
}
</style>
FAQs
Swipeable Bottom Sheet library for vue2 and vue3
The npm package @takuma-ru/vue-swipe-modal receives a total of 481 weekly downloads. As such, @takuma-ru/vue-swipe-modal popularity was classified as not popular.
We found that @takuma-ru/vue-swipe-modal 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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.