bootstrap-vue-next 0.6.4 → 0.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bootstrap-vue-next.es.js +3 -1
- package/dist/bootstrap-vue-next.es.js.map +1 -1
- package/dist/bootstrap-vue-next.umd.js +1 -1
- package/dist/bootstrap-vue-next.umd.js.map +1 -1
- package/dist/components/BCarousel/BCarousel.vue.d.ts +224 -0
- package/package.json +4 -2
- package/src/components/BCarousel/BCarousel.vue +8 -0
- package/src/composables/useCountdown.ts +4 -4
|
@@ -194,7 +194,9 @@ function Ue(e) {
|
|
|
194
194
|
}
|
|
195
195
|
function Bo(e, t) {
|
|
196
196
|
function a(...l) {
|
|
197
|
-
|
|
197
|
+
return new Promise((n, r) => {
|
|
198
|
+
Promise.resolve(e(() => t.apply(this, l), { fn: t, thisArg: this, args: l })).then(n).catch(r);
|
|
199
|
+
});
|
|
198
200
|
}
|
|
199
201
|
return a;
|
|
200
202
|
}
|