bootstrap-vue-next
Advanced tools
Comparing version 0.6.4 to 0.6.5
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3354614
599
38837
6
23
+ Added@vueuse/shared@^9.11.1
Updated@vueuse/core@^9.11.1