Skip to content

Commit

Permalink
update deps, fix AppLink typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
glass-ships committed Jan 6, 2025
1 parent a404844 commit 9be3fa1
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
Binary file modified frontend/bun.lockb
Binary file not shown.
34 changes: 17 additions & 17 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@
},
"dependencies": {
"@floating-ui/dom": "^1.6.12",
"@fortawesome/fontawesome-svg-core": "^6.7.1",
"@fortawesome/free-brands-svg-icons": "^6.7.1",
"@fortawesome/free-regular-svg-icons": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@sentry/browser": "^8.42.0",
"@sentry/vue": "^8.42.0",
"@sentry/browser": "^8.47.0",
"@sentry/vue": "^8.47.0",
"@vueuse/core": "^11.3.0",
"apexcharts": "^4.1.0",
"apexcharts": "^4.3.0",
"body-scroll-lock": "4.0.0-beta.0",
"lodash": "^4.17.21",
"micromark": "^4.0.1",
"normalize.css": "^8.0.1",
"tippy.js": "^6.3.7",
"ua-parser-js": "^1.0.39",
"ua-parser-js": "^1.0.40",
"vue": "^3.5.13",
"vue-gtag": "^2.0.1",
"vue-hotjar": "^1.4.0",
"vue-router": "^4.5.0",
"vue-tippy": "^6.5.0",
"vue-tippy": "^6.6.0",
"vue3-apexcharts": "~1.4.4"
},
"devDependencies": {
Expand All @@ -43,30 +43,30 @@
"@types/body-scroll-lock": "^3.1.2",
"@types/dom-to-image": "^2.6.7",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.13",
"@types/lodash": "^4.17.14",
"@types/node": "22.9.0",
"@types/ua-parser-js": "^0.7.39",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.4",
"@vue/eslint-config-typescript": "^14.2.0",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "^0.6.0",
"axe-playwright": "^2.0.3",
"eslint": "^9.16.0",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"jsdom": "^25.0.1",
"msw": "^2.6.6",
"msw": "^2.7.0",
"postcss": "^8.4.49",
"prettier": "^3.4.1",
"prettier": "^3.4.2",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-jsdoc": "^1.3.0",
"sass": "^1.81.0",
"prettier-plugin-jsdoc": "^1.3.2",
"sass": "^1.83.1",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-svg-loader": "^5.1.0",
"vitest": "^2.1.8",
"vue-tsc": "^2.1.10"
"vue-tsc": "^2.2.0"
},
"msw": {
"workerDirectory": "public"
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/AppLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</template>

<script setup lang="ts">
import { computed, useSlots } from "vue";
import { computed, useSlots, type VNode } from "vue";
import { useRouter, type RouteLocationRaw } from "vue-router";
import { mapValues } from "lodash";
import { stringify } from "@/util/object";
Expand Down Expand Up @@ -66,7 +66,7 @@ const props = withDefaults(defineProps<Props>(), {
const slots = useSlots();

type Slots = {
default: () => unknown;
default: () => VNode[];
};

defineSlots<Slots>();
Expand Down

0 comments on commit 9be3fa1

Please sign in to comment.