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)
yarn add @takuma-ru/vue-swipe-modal@^4.0.0
<template>
<div>
<button @click="modal = true">open</button>
<swipe-modal
v-model="modal"
contents-height="50vh"
border-top-radius="16px"
>
<h1>contents</h1>
</swipe-modal>
</div>
</template>
<script lang="ts" setup>
import { ref } from 'vue'
import swipeModal from '@takuma-ru/vue-swipe-modal'
const modal = ref(false)
</script>
<template>
<div>
<button @click="modal = true">open</button>
<swipe-modal
v-model="modal"
contents-height="50vh"
border-top-radius="16px"
>
<h1>contents</h1>
</swipe-modal>
</div>
</template>
<script lang="ts">
import { defineComponent, ref, reactive } from '@vue/composition-api';
import { swipeModal } from '@takuma-ru/vue-swipe-modal'
export default defineComponent({
components: {
swipeModal,
},
setup () {
const modal = ref<boolean>(false)
return {
modal,
}
}
})
</script>
<!-- for Vue2 -->
<template>
<div>
<button @click="modal = true">open</button>
<swipe-modal
v-model="modal"
contents-height="50vh"
border-top-radius="16px"
>
<h1>contents</h1>
</swipe-modal>
</div>
</template>
<script lang="ts">
import { defineComponent, ref, reactive } from '@vue/composition-api';
import { swipeModal } from '@takuma-ru/vue-swipe-modal'
export default defineComponent({
components: {
swipeModal,
},
setup () {
const modal = ref<boolean>(false)
return {
modal,
}
}
})
</script>
Variable | Type | default | Details |
---|---|---|---|
v-model | Boolean | false | Control the opening and closing |
dark | Boolean | false | Dark mode |
Variable | Type | default | Details |
---|---|---|---|
persistent | Boolean | false | Don't close it by pressing background (out of modal) |
backgroundColor | String | #80808080 | Background (out of modal) color |
Variable | Type | default | Details |
---|---|---|---|
fullscreen | Boolean | false | Display in full screen mode (height: 100%) |
noTip | Boolean | false | Don't show the chip at the top of the modal. |
contents-width | String | 100% | Width of the modal |
contents-height | String | 30vh | Height of the modal |
border-top-radius | String | null | Radius at the top of the modal(This value takes precedence) |
border-top-left-radius | String | 0px | Modal upper left radius |
border-top-right-radius | String | 0px | Modal upper right radius |
contents-color | String | white | Modal background color |
tip-color | String | #c8c8c8 | Tip chip color |
dark-contents-color | String | black | Modal background color in dark mode |
FAQs
Swipeable Bottom Sheet library for vue2 and vue3
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.