Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/app/app.vue
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<script setup lang="ts">
import { withoutTrailingSlash } from 'ufo'
// import { debounce } from 'perfect-debounce'
import type { ContentSearchFile } from '@nuxt/ui-pro'
// import type { ContentSearchFile } from '@nuxt/ui-pro'

const route = useRoute()
// const colorMode = useColorMode()
const runtimeConfig = useRuntimeConfig()
const { integrity, api } = runtimeConfig.public.content

const { data: navigation } = await useAsyncData('navigation', () => fetchContentNavigation(), { default: () => [] })
const { data: files } = await useLazyFetch<ContentSearchFile[]>(`${api.baseURL}/search${integrity ? '.' + integrity : ''}`, { default: () => [] })
const { data: files } = await useLazyFetch<any[]>(`${api.baseURL}/search${integrity ? '.' + integrity : ''}`, { default: () => [] })

const searchTerm = ref('')

Expand Down
2 changes: 1 addition & 1 deletion docs/app/components/content/ComponentExample.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const optionsValues = ref(props.options?.reduce((acc, option) => {
acc[option.name] = option.default
}
return acc
}, {}))
}, {} as Record<string, any>) || {})
</script>

<template>
Expand Down
4 changes: 2 additions & 2 deletions docs/app/error.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import type { NuxtError } from '#app'
import type { ContentSearchFile } from '@nuxt/ui-pro'
// import type { ContentSearchFile } from '@nuxt/ui-pro'

useSeoMeta({
title: 'Page not found',
Expand All @@ -18,7 +18,7 @@ const runtimeConfig = useRuntimeConfig()
const { integrity, api } = runtimeConfig.public.content

const { data: navigation } = await useAsyncData('navigation', () => fetchContentNavigation(), { default: () => [] })
const { data: files } = await useLazyFetch<ContentSearchFile[]>(`${api.baseURL}/search${integrity ? '.' + integrity : ''}`, { default: () => [] })
const { data: files } = await useLazyFetch<any[]>(`${api.baseURL}/search${integrity ? '.' + integrity : ''}`, { default: () => [] })

// Computed

Expand Down
12 changes: 6 additions & 6 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
"type": "module",
"dependencies": {
"@iconify-json/heroicons": "^1.2.0",
"@iconify-json/simple-icons": "^1.2.2",
"@iconify-json/vscode-icons": "^1.2.1",
"@iconify-json/simple-icons": "^1.2.3",
"@iconify-json/vscode-icons": "^1.2.2",
"@nuxt/content": "^2.13.2",
"@nuxt/image": "^1.8.0",
"@nuxt/ui": "latest",
"@nuxt/ui-pro": "2.0.0-alpha.2",
"@nuxtjs/plausible": "^1.0.2",
"@octokit/rest": "^21.0.2",
"@vueuse/nuxt": "^11.0.3",
"@vueuse/nuxt": "^11.1.0",
"joi": "^17.13.3",
"nuxt": "^3.13.1",
"nuxt": "^3.13.2",
"nuxt-component-meta": "^0.8.2",
"nuxt-og-image": "^3.0.1",
"nuxt-og-image": "^3.0.2",
"prettier": "^3.3.3",
"ufo": "^1.5.4",
"valibot": "^0.41.0",
"valibot": "^0.42.0",
"yup": "^1.4.0",
"zod": "^3.23.8"
}
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,18 @@
"@nuxt/icon": "^1.5.1",
"@nuxt/kit": "^3.13.1",
"@nuxt/schema": "^3.13.1",
"@nuxtjs/color-mode": "^3.4.4",
"@tailwindcss/postcss": "4.0.0-alpha.23",
"@tailwindcss/vite": "4.0.0-alpha.23",
"@vueuse/core": "^11.0.3",
"@vueuse/integrations": "^11.0.3",
"@nuxtjs/color-mode": "^3.5.1",
"@tailwindcss/postcss": "4.0.0-alpha.24",
"@tailwindcss/vite": "4.0.0-alpha.24",
"@vueuse/core": "^11.1.0",
"@vueuse/integrations": "^11.1.0",
"defu": "^6.1.4",
"fuse.js": "^7.0.0",
"ohash": "^1.1.3",
"ohash": "^1.1.4",
"radix-vue": "^1.9.5",
"scule": "^1.3.0",
"tailwind-variants": "^0.2.1",
"tailwindcss": "4.0.0-alpha.23",
"tailwindcss": "4.0.0-alpha.24",
"vaul-vue": "^0.2.0"
},
"devDependencies": {
Expand All @@ -73,8 +73,8 @@
"joi": "^17.13.3",
"nuxt": "^3.13.1",
"release-it": "^17.6.0",
"valibot": "^0.41.0",
"vitest": "^2.0.5",
"valibot": "^0.42.0",
"vitest": "^2.1.1",
"vitest-environment-nuxt": "^1.0.1",
"vue-tsc": "^2.1.6",
"yup": "^1.4.0",
Expand Down
2 changes: 1 addition & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
},
"dependencies": {
"@nuxt/ui": "latest",
"nuxt": "^3.13.1"
"nuxt": "^3.13.2"
}
}
Loading