Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bootstrap-vue-next

Package Overview
Dependencies
Maintainers
2
Versions
163
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bootstrap-vue-next - npm Package Compare versions

Comparing version 0.6.4 to 0.6.5

dist/components/BCarousel/BCarousel.vue.d.ts

6

package.json

@@ -5,3 +5,3 @@ {

"description": "Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript",
"version": "0.6.4",
"version": "0.6.5",
"license": "MIT",

@@ -37,3 +37,4 @@ "main": "./dist/bootstrap-vue-next.umd.js",

"@nuxt/kit": "3.0.0",
"@vueuse/core": "^9.6.0"
"@vueuse/core": "^9.11.1",
"@vueuse/shared": "^9.11.1"
},

@@ -45,2 +46,3 @@ "devDependencies": {

"@vitest/coverage-c8": "^0.25.3",
"@vue/compiler-dom": "^3.2.45",
"@vue/runtime-core": "^3.2.45",

@@ -47,0 +49,0 @@ "@vue/shared": "^3.2.45",

@@ -39,6 +39,6 @@ import {

// Has watchEffect to set
const resolvedLength = ref(resolveUnref(length))
const resolvedLength = ref<number>(resolveUnref(length))
// Has watchEffect to set
const intervalLength = ref(resolveUnref(interval))
const intervalLength = ref<number>(resolveUnref(interval))

@@ -72,3 +72,3 @@ const amountOfIntervals = computed(() => Math.ceil(resolvedLength.value / intervalLength.value))

watchEffect(() => {
const newVal = resolveUnref(length)
const newVal = resolveUnref(length) as number
const oldVal = resolvedLength.value

@@ -82,3 +82,3 @@ if (newVal === oldVal) return

watchEffect(() => {
const newVal = resolveUnref(interval)
const newVal = resolveUnref(interval) as number
const oldVal = intervalLength.value

@@ -85,0 +85,0 @@ if (newVal === oldVal) return

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc