chore(deps): update all non-major dependencies (v3) (#3293)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
renovate[bot]
2025-02-14 12:01:16 +01:00
committed by GitHub
parent 77697910be
commit 83365da00e
12 changed files with 1001 additions and 977 deletions

View File

@@ -1,13 +1,13 @@
<script setup lang="ts">
import type { DateValue } from '@internationalized/date'
import { CalendarDate } from '@internationalized/date'
import type { Matcher } from 'reka-ui/date'
const modelValue = shallowRef({
start: new CalendarDate(2022, 1, 1),
end: new CalendarDate(2022, 1, 9)
})
const isDateDisabled: Matcher = (date) => {
const isDateDisabled = (date: DateValue) => {
return date.day >= 10 && date.day <= 16
}
</script>

View File

@@ -1,13 +1,13 @@
<script setup lang="ts">
import type { DateValue } from '@internationalized/date'
import { CalendarDate } from '@internationalized/date'
import type { Matcher } from 'reka-ui/date'
const modelValue = shallowRef({
start: new CalendarDate(2022, 1, 1),
end: new CalendarDate(2022, 1, 9)
})
const isDateUnavailable: Matcher = (date) => {
const isDateUnavailable = (date: DateValue) => {
return date.day >= 10 && date.day <= 16
}
</script>

View File

@@ -6,7 +6,7 @@
"@iconify-json/logos": "^1.2.4",
"@iconify-json/lucide": "^1.2.26",
"@iconify-json/simple-icons": "^1.2.24",
"@iconify-json/vscode-icons": "^1.2.13",
"@iconify-json/vscode-icons": "^1.2.14",
"@nuxt/content": "^3.1.1",
"@nuxt/image": "^1.9.0",
"@nuxt/ui": "latest",
@@ -14,20 +14,20 @@
"@nuxthub/core": "^0.8.17",
"@nuxtjs/plausible": "^1.2.0",
"@octokit/rest": "^21.1.0",
"@vueuse/nuxt": "^12.5.0",
"@vueuse/nuxt": "^12.6.1",
"joi": "^17.13.3",
"nuxt": "^3.15.4",
"nuxt-component-meta": "^0.10.0",
"nuxt-og-image": "^4.1.2",
"prettier": "^3.5.0",
"prettier": "^3.5.1",
"shiki-transformer-color-highlight": "^0.2.0",
"superstruct": "^2.0.2",
"ufo": "^1.5.4",
"valibot": "^0.42.1",
"yup": "^1.6.1",
"zod": "^3.24.1"
"zod": "^3.24.2"
},
"devDependencies": {
"wrangler": "^3.108.0"
"wrangler": "^3.109.0"
}
}