mirror of
https://github.com/nuxt/ui.git
synced 2026-09-14 19:51:10 +08:00
chore(deps): update all non-major dependencies (#6925)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
+10
-10
@@ -9,12 +9,12 @@
|
||||
"typecheck": "nuxt typecheck"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ai-sdk/anthropic": "^4.0.46",
|
||||
"@ai-sdk/gateway": "^4.0.69",
|
||||
"@ai-sdk/vue": "^4.0.85",
|
||||
"@ai-sdk/anthropic": "^4.0.49",
|
||||
"@ai-sdk/gateway": "^4.0.75",
|
||||
"@ai-sdk/vue": "^4.0.93",
|
||||
"@comark/vue": "^0.6.2",
|
||||
"@iconify-json/logos": "^1.2.13",
|
||||
"@iconify-json/lucide": "^1.2.127",
|
||||
"@iconify-json/lucide": "^1.2.129",
|
||||
"@iconify-json/ph": "^1.2.2",
|
||||
"@iconify-json/simple-icons": "^1.2.94",
|
||||
"@iconify-json/tabler": "^1.2.38",
|
||||
@@ -29,23 +29,23 @@
|
||||
"@octokit/rest": "^22.0.1",
|
||||
"@regle/core": "^1.29.1",
|
||||
"@regle/rules": "^1.29.1",
|
||||
"@takumi-rs/core": "^2.13.2",
|
||||
"@takumi-rs/core": "^2.13.6",
|
||||
"@tiptap/extension-emoji": "^3.30.5",
|
||||
"@tiptap/extension-text-align": "^3.30.5",
|
||||
"@vercel/analytics": "^2.0.1",
|
||||
"@vercel/speed-insights": "^2.0.0",
|
||||
"@vueuse/integrations": "^14.4.0",
|
||||
"@vueuse/nuxt": "^14.4.0",
|
||||
"ai": "^7.0.85",
|
||||
"ai": "^7.0.93",
|
||||
"capture-website": "^5.1.0",
|
||||
"fflate": "^0.8.3",
|
||||
"joi": "^18.2.5",
|
||||
"joi": "^18.2.8",
|
||||
"json5": "^2.2.3",
|
||||
"maska": "^3.2.0",
|
||||
"maska": "^3.2.1",
|
||||
"minimark": "^0.2.0",
|
||||
"motion-v": "^2.4.0",
|
||||
"motion-v": "^2.4.2",
|
||||
"nuxt": "^4.5.2",
|
||||
"nuxt-agent-discovery": "^0.4.0",
|
||||
"nuxt-agent-discovery": "^0.5.0",
|
||||
"nuxt-component-meta": "^0.18.0",
|
||||
"nuxt-llms": "^0.2.0",
|
||||
"nuxt-og-image": "^6.7.8",
|
||||
|
||||
+7
-7
@@ -2,7 +2,7 @@
|
||||
"name": "@nuxt/ui",
|
||||
"description": "A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.",
|
||||
"version": "4.11.0",
|
||||
"packageManager": "pnpm@11.24.0",
|
||||
"packageManager": "pnpm@11.25.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/nuxt/ui.git"
|
||||
@@ -133,8 +133,8 @@
|
||||
"dependencies": {
|
||||
"@floating-ui/dom": "^1.8.0",
|
||||
"@iconify/vue": "^5.0.1",
|
||||
"@internationalized/date": "^3.12.3",
|
||||
"@internationalized/number": "^3.6.7",
|
||||
"@internationalized/date": "^3.12.4",
|
||||
"@internationalized/number": "^3.6.8",
|
||||
"@nuxt/fonts": "^0.14.0",
|
||||
"@nuxt/icon": "^2.5.1",
|
||||
"@nuxt/kit": "^4.5.2",
|
||||
@@ -181,7 +181,7 @@
|
||||
"knitwork": "^1.3.0",
|
||||
"magic-string": "^1.2.3",
|
||||
"mlly": "^1.8.2",
|
||||
"motion-v": "^2.4.0",
|
||||
"motion-v": "^2.4.2",
|
||||
"ohash": "^2.0.12",
|
||||
"pathe": "^2.0.3",
|
||||
"reka-ui": "2.10.4",
|
||||
@@ -206,10 +206,10 @@
|
||||
"@tanstack/table-core": "^8.21.3",
|
||||
"@vitejs/plugin-vue": "^6.0.8",
|
||||
"@vue/test-utils": "^2.5.0",
|
||||
"ai": "^7.0.85",
|
||||
"ai": "^7.0.93",
|
||||
"embla-carousel": "^8.6.0",
|
||||
"eslint": "^10.9.1",
|
||||
"happy-dom": "^20.12.0",
|
||||
"eslint": "^10.10.0",
|
||||
"happy-dom": "^20.14.0",
|
||||
"nuxt": "^4.5.2",
|
||||
"release-it": "^21.0.2",
|
||||
"unbuild": "^3.6.1",
|
||||
|
||||
@@ -42,8 +42,9 @@ export default defineNuxtConfig({
|
||||
compilerOptions: {
|
||||
paths: {
|
||||
// The docs examples imported in `pages/components/form.vue` resolve
|
||||
// `@nuxt/ui` from `docs/`, which the isolated CI install can't reach.
|
||||
'@nuxt/ui': ['../node_modules/@nuxt/ui/dist/module.d.mts']
|
||||
// `@nuxt/ui` and `zod` from `docs/`, which the isolated CI install can't reach.
|
||||
'@nuxt/ui': ['../node_modules/@nuxt/ui/dist/module.d.mts'],
|
||||
'zod': ['../node_modules/zod']
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,13 +9,13 @@
|
||||
"typecheck": "nuxt typecheck"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ai-sdk/anthropic": "^4.0.46",
|
||||
"@ai-sdk/gateway": "^4.0.69",
|
||||
"@ai-sdk/vue": "^4.0.85",
|
||||
"@ai-sdk/anthropic": "^4.0.49",
|
||||
"@ai-sdk/gateway": "^4.0.75",
|
||||
"@ai-sdk/vue": "^4.0.93",
|
||||
"@comark/vue": "^0.6.2",
|
||||
"@iconify-json/lucide": "^1.2.127",
|
||||
"@iconify-json/lucide": "^1.2.129",
|
||||
"@iconify-json/simple-icons": "^1.2.94",
|
||||
"@internationalized/date": "^3.12.3",
|
||||
"@internationalized/date": "^3.12.4",
|
||||
"@nuxt/content": "^3.16.0",
|
||||
"@nuxt/ui": "workspace:*",
|
||||
"@tanstack/vue-table": "^8.21.3",
|
||||
@@ -25,7 +25,7 @@
|
||||
"@tiptap/pm": "^3.30.5",
|
||||
"@tiptap/vue-3": "^3.30.5",
|
||||
"@vueuse/core": "^14.4.0",
|
||||
"ai": "^7.0.85",
|
||||
"ai": "^7.0.93",
|
||||
"nuxt": "^4.5.2",
|
||||
"scule": "^1.3.0",
|
||||
"tailwindcss": "^4.3.3",
|
||||
|
||||
@@ -15,11 +15,11 @@
|
||||
"@tiptap/extension-text-align": "^3.30.5",
|
||||
"tailwindcss": "^4.3.3",
|
||||
"vue": "^3.5.42",
|
||||
"vue-router": "^5.3.0",
|
||||
"vue-router": "^5.3.1",
|
||||
"zod": "^4.5.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@iconify-json/lucide": "^1.2.127",
|
||||
"@iconify-json/lucide": "^1.2.129",
|
||||
"@vitejs/plugin-vue": "^6.0.8",
|
||||
"typescript": "^6.0.3",
|
||||
"vite": "^8.2.2",
|
||||
|
||||
Generated
+524
-458
File diff suppressed because it is too large
Load Diff
@@ -191,7 +191,7 @@ exports[`ContentToc > renders with highlight circuit variant correctly 1`] = `
|
||||
</div>
|
||||
<p data-slot="trigger" class="group text-sm font-semibold flex-1 items-center gap-1.5 py-1.5 -mt-1.5 rounded-sm outline-primary/25 focus-visible:outline-3 lg:shrink-0 hidden lg:flex"><span data-slot="title" class="truncate">On this page</span><span data-slot="trailing" class="ms-auto inline-flex gap-1.5 items-center"><span class="iconify i-lucide:chevron-down size-5 transform transition-transform duration-200 ease-out motion-reduce:transition-none shrink-0 group-data-[state=open]:rotate-180 lg:hidden" aria-hidden="true" data-slot="trailingIcon"></span></span></p>
|
||||
<div data-slot="content" class="relative data-[state=open]:animate-[collapsible-down_200ms_var(--ease-out)] data-[state=closed]:animate-[collapsible-up_200ms_var(--ease-out)] data-[state=closed]:overflow-hidden focus:outline-none lg:min-h-[min(var(--list-height,8rem),8rem)] lg:overflow-y-auto lg:scrollbar-none hidden lg:flex" style="--list-height: 12.25rem;">
|
||||
<div data-slot="indicator" class="absolute ms-2.5 start-0 top-0 rtl:-scale-x-100" style="width: 0.75rem; height: 12.25rem;">
|
||||
<div data-slot="indicator" class="absolute ms-2.5 start-0 top-0 rtl:-scale-x-100" style="width: 0.75rem; height: 12.25rem; mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%20196'%3E%3Cpath%20d%3D'M0.5%200%20L0.5%2028%20L0.5%2056%20L0.5%2084%20L0.5%20106%20L10.5%20118%20L10.5%20140%20L10.5%20168%20L10.5%20196'%20stroke%3D'black'%20stroke-width%3D'1'%20fill%3D'none'%2F%3E%3C%2Fsvg%3E");">
|
||||
<div data-slot="indicatorLine" class="absolute inset-0 bg-(--ui-border)"></div>
|
||||
<!--v-if-->
|
||||
</div>
|
||||
@@ -235,7 +235,7 @@ exports[`ContentToc > renders with highlight circuit variant neutral color corre
|
||||
</div>
|
||||
<p data-slot="trigger" class="group text-sm font-semibold flex-1 items-center gap-1.5 py-1.5 -mt-1.5 rounded-sm outline-primary/25 focus-visible:outline-3 lg:shrink-0 hidden lg:flex"><span data-slot="title" class="truncate">On this page</span><span data-slot="trailing" class="ms-auto inline-flex gap-1.5 items-center"><span class="iconify i-lucide:chevron-down size-5 transform transition-transform duration-200 ease-out motion-reduce:transition-none shrink-0 group-data-[state=open]:rotate-180 lg:hidden" aria-hidden="true" data-slot="trailingIcon"></span></span></p>
|
||||
<div data-slot="content" class="relative data-[state=open]:animate-[collapsible-down_200ms_var(--ease-out)] data-[state=closed]:animate-[collapsible-up_200ms_var(--ease-out)] data-[state=closed]:overflow-hidden focus:outline-none lg:min-h-[min(var(--list-height,8rem),8rem)] lg:overflow-y-auto lg:scrollbar-none hidden lg:flex" style="--list-height: 12.25rem;">
|
||||
<div data-slot="indicator" class="absolute ms-2.5 start-0 top-0 rtl:-scale-x-100" style="width: 0.75rem; height: 12.25rem;">
|
||||
<div data-slot="indicator" class="absolute ms-2.5 start-0 top-0 rtl:-scale-x-100" style="width: 0.75rem; height: 12.25rem; mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%20196'%3E%3Cpath%20d%3D'M0.5%200%20L0.5%2028%20L0.5%2056%20L0.5%2084%20L0.5%20106%20L10.5%20118%20L10.5%20140%20L10.5%20168%20L10.5%20196'%20stroke%3D'black'%20stroke-width%3D'1'%20fill%3D'none'%2F%3E%3C%2Fsvg%3E");">
|
||||
<div data-slot="indicatorLine" class="absolute inset-0 bg-(--ui-border)"></div>
|
||||
<!--v-if-->
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user