From dd6fab86ee6b92fd32377f01a4ea183d09042a93 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 11 Sep 2024 15:37:59 +0100 Subject: [PATCH] chore(deps): update dependency nuxt to ^3.13.1 (#2946) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Roe --- components/common/CommonPaginator.vue | 5 +- ...ficationSubscribePushNotificationError.vue | 4 +- docs/package.json | 2 +- modules/emoji-mart-translation.ts | 4 +- modules/pwa/i18n.ts | 2 +- nuxt.config.ts | 3 +- package.json | 41 +- patches/nuxt.patch | 12 + pnpm-lock.yaml | 3229 ++++++++--------- scripts/avatars.ts | 4 +- scripts/cleanup-translations.ts | 8 +- scripts/generate-pwa-icons.ts | 2 +- scripts/prepare-translation-status.ts | 10 +- 13 files changed, 1489 insertions(+), 1837 deletions(-) create mode 100644 patches/nuxt.patch diff --git a/components/common/CommonPaginator.vue b/components/common/CommonPaginator.vue index e370dbfa..2c190873 100644 --- a/components/common/CommonPaginator.vue +++ b/components/common/CommonPaginator.vue @@ -3,7 +3,6 @@ import { DynamicScroller } from 'vue-virtual-scroller' import 'vue-virtual-scroller/dist/vue-virtual-scroller.css' import type { mastodon } from 'masto' -import type { UnwrapRef } from 'vue' const { paginator, @@ -33,7 +32,7 @@ defineSlots<{ newer: U // newer is undefined when index === 0 }) => void items: (props: { - items: UnwrapRef + items: U[] }) => void updater: (props: { number: number @@ -74,7 +73,7 @@ defineExpose({ createEntry, removeEntry, updateEntry })