From fe5bcb99aecd6608b38f30dc8d7928c0a6b43bc6 Mon Sep 17 00:00:00 2001 From: Divyansh Singh <40380293+brc-dd@users.noreply.github.com> Date: Tue, 24 Sep 2024 21:09:51 +0530 Subject: [PATCH] bump deps --- client.d.ts | 5 - config/vite.js | 2 +- lib/components/SDatePicker.vue | 1 - lib/components/SInputDate.vue | 25 +- lib/styles/bootstrap.css | 1 - package.json | 49 +- pnpm-lock.yaml | 1695 +++++++++-------- .../SDatePicker.01_Playground.story.vue | 4 +- tests/components/SInputDate.spec.ts | 2 +- 9 files changed, 981 insertions(+), 803 deletions(-) diff --git a/client.d.ts b/client.d.ts index 131b0cb2..8fb0831d 100644 --- a/client.d.ts +++ b/client.d.ts @@ -2,8 +2,3 @@ /// // this file contains public types which are exposed to external modules - -declare module 'v-calendar' { - export * from 'v-calendar/dist/types/src/index.d.ts' - export { default } from 'v-calendar/dist/types/src/index.d.ts' -} diff --git a/config/vite.js b/config/vite.js index 8839d970..83819d15 100644 --- a/config/vite.js +++ b/config/vite.js @@ -37,11 +37,11 @@ export const baseConfig = { 'fuse.js', 'lodash-es', 'markdown-it', + 'maska', 'normalize.css', 'ofetch', 'pinia', 'qs', - 'v-calendar', 'vue-router', 'vue' ] diff --git a/lib/components/SDatePicker.vue b/lib/components/SDatePicker.vue index e9e7c458..4ad9ea84 100644 --- a/lib/components/SDatePicker.vue +++ b/lib/components/SDatePicker.vue @@ -10,7 +10,6 @@ const selected = reactive(model.value) const curr = reactive({ ...selected }) const mode = ref<'days' | 'months' | 'years'>('days') - const el = ref() const keys = ['Enter', ' ', 'ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight'] diff --git a/lib/components/SInputDate.vue b/lib/components/SInputDate.vue index 122aea02..65cec93f 100644 --- a/lib/components/SInputDate.vue +++ b/lib/components/SInputDate.vue @@ -1,5 +1,4 @@