From ae43e5e08a5d87e9d42210b21a06bece4bf28965 Mon Sep 17 00:00:00 2001 From: roiLeo Date: Thu, 13 Jun 2024 19:55:37 +0200 Subject: [PATCH] chore: rename `Nuxt.js` to `Nuxt` (#602) --- apps/www/src/content/docs/components/combobox.md | 2 +- apps/www/src/content/docs/components/data-table.md | 2 +- apps/www/src/content/docs/components/navigation-menu.md | 2 +- apps/www/src/lib/registry/default/example/CardFormDemo.vue | 2 +- apps/www/src/lib/registry/default/example/CardWithForm.vue | 2 +- apps/www/src/lib/registry/default/example/ComboboxDemo.vue | 2 +- .../src/lib/registry/default/example/TagsInputComboboxDemo.vue | 2 +- apps/www/src/lib/registry/new-york/example/CardFormDemo.vue | 2 +- apps/www/src/lib/registry/new-york/example/CardWithForm.vue | 2 +- apps/www/src/lib/registry/new-york/example/ComboboxDemo.vue | 2 +- .../src/lib/registry/new-york/example/TagsInputComboboxDemo.vue | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/apps/www/src/content/docs/components/combobox.md b/apps/www/src/content/docs/components/combobox.md index dd8c410a..3a919d56 100644 --- a/apps/www/src/content/docs/components/combobox.md +++ b/apps/www/src/content/docs/components/combobox.md @@ -44,7 +44,7 @@ import { const frameworks = [ { value: 'next.js', label: 'Next.js' }, { value: 'sveltekit', label: 'SvelteKit' }, - { value: 'nuxt.js', label: 'Nuxt.js' }, + { value: 'nuxt', label: 'Nuxt' }, { value: 'remix', label: 'Remix' }, { value: 'astro', label: 'Astro' }, ] diff --git a/apps/www/src/content/docs/components/data-table.md b/apps/www/src/content/docs/components/data-table.md index 9bd2ad21..d36f2104 100644 --- a/apps/www/src/content/docs/components/data-table.md +++ b/apps/www/src/content/docs/components/data-table.md @@ -97,7 +97,7 @@ Start by creating the following file structure: └── app.vue ``` -I'm using a Nuxt.js example here but this works for any other Vue framework. +I'm using a Nuxt example here but this works for any other Vue framework. - `columns.ts` It will contain our column definitions. - `data-table.vue` It will contain our `` component. diff --git a/apps/www/src/content/docs/components/navigation-menu.md b/apps/www/src/content/docs/components/navigation-menu.md index f1748f57..1ca99120 100644 --- a/apps/www/src/content/docs/components/navigation-menu.md +++ b/apps/www/src/content/docs/components/navigation-menu.md @@ -47,7 +47,7 @@ import { ### Link Component -When using the Nuxt.js `` component, you can use `navigationMenuTriggerStyle()` to apply the correct styles to the trigger. +When using the Nuxt `` component, you can use `navigationMenuTriggerStyle()` to apply the correct styles to the trigger. ```ts import { navigationMenuTriggerStyle } from '@/components/ui/navigation-menu' diff --git a/apps/www/src/lib/registry/default/example/CardFormDemo.vue b/apps/www/src/lib/registry/default/example/CardFormDemo.vue index a9da077e..734aed7b 100644 --- a/apps/www/src/lib/registry/default/example/CardFormDemo.vue +++ b/apps/www/src/lib/registry/default/example/CardFormDemo.vue @@ -40,7 +40,7 @@ import { Button } from '@/lib/registry/default/ui/button' - Nuxt.js + Nuxt Next.js diff --git a/apps/www/src/lib/registry/default/example/CardWithForm.vue b/apps/www/src/lib/registry/default/example/CardWithForm.vue index 8f74fdaa..f0540e66 100644 --- a/apps/www/src/lib/registry/default/example/CardWithForm.vue +++ b/apps/www/src/lib/registry/default/example/CardWithForm.vue @@ -49,7 +49,7 @@ import { Astro - Nuxt.js + Nuxt diff --git a/apps/www/src/lib/registry/default/example/ComboboxDemo.vue b/apps/www/src/lib/registry/default/example/ComboboxDemo.vue index 835e9655..88ae0465 100644 --- a/apps/www/src/lib/registry/default/example/ComboboxDemo.vue +++ b/apps/www/src/lib/registry/default/example/ComboboxDemo.vue @@ -21,7 +21,7 @@ import { const frameworks = [ { value: 'next.js', label: 'Next.js' }, { value: 'sveltekit', label: 'SvelteKit' }, - { value: 'nuxt.js', label: 'Nuxt.js' }, + { value: 'nuxt', label: 'Nuxt' }, { value: 'remix', label: 'Remix' }, { value: 'astro', label: 'Astro' }, ] diff --git a/apps/www/src/lib/registry/default/example/TagsInputComboboxDemo.vue b/apps/www/src/lib/registry/default/example/TagsInputComboboxDemo.vue index 23427ba1..2dfae1bc 100644 --- a/apps/www/src/lib/registry/default/example/TagsInputComboboxDemo.vue +++ b/apps/www/src/lib/registry/default/example/TagsInputComboboxDemo.vue @@ -7,7 +7,7 @@ import { TagsInput, TagsInputInput, TagsInputItem, TagsInputItemDelete, TagsInpu const frameworks = [ { value: 'next.js', label: 'Next.js' }, { value: 'sveltekit', label: 'SvelteKit' }, - { value: 'nuxt.js', label: 'Nuxt.js' }, + { value: 'nuxt', label: 'Nuxt' }, { value: 'remix', label: 'Remix' }, { value: 'astro', label: 'Astro' }, ] diff --git a/apps/www/src/lib/registry/new-york/example/CardFormDemo.vue b/apps/www/src/lib/registry/new-york/example/CardFormDemo.vue index b8d0a9ab..c80c38dc 100644 --- a/apps/www/src/lib/registry/new-york/example/CardFormDemo.vue +++ b/apps/www/src/lib/registry/new-york/example/CardFormDemo.vue @@ -40,7 +40,7 @@ import { Button } from '@/lib/registry/new-york/ui/button' - Nuxt.js + Nuxt Next.js diff --git a/apps/www/src/lib/registry/new-york/example/CardWithForm.vue b/apps/www/src/lib/registry/new-york/example/CardWithForm.vue index bcdb12ae..4a6a1e09 100644 --- a/apps/www/src/lib/registry/new-york/example/CardWithForm.vue +++ b/apps/www/src/lib/registry/new-york/example/CardWithForm.vue @@ -49,7 +49,7 @@ import { Astro - Nuxt.js + Nuxt diff --git a/apps/www/src/lib/registry/new-york/example/ComboboxDemo.vue b/apps/www/src/lib/registry/new-york/example/ComboboxDemo.vue index d660c47b..9dbcc6c4 100644 --- a/apps/www/src/lib/registry/new-york/example/ComboboxDemo.vue +++ b/apps/www/src/lib/registry/new-york/example/ComboboxDemo.vue @@ -21,7 +21,7 @@ import { const frameworks = [ { value: 'next.js', label: 'Next.js' }, { value: 'sveltekit', label: 'SvelteKit' }, - { value: 'nuxt.js', label: 'Nuxt.js' }, + { value: 'nuxt', label: 'Nuxt' }, { value: 'remix', label: 'Remix' }, { value: 'astro', label: 'Astro' }, ] diff --git a/apps/www/src/lib/registry/new-york/example/TagsInputComboboxDemo.vue b/apps/www/src/lib/registry/new-york/example/TagsInputComboboxDemo.vue index 00a53697..1cd0c08a 100644 --- a/apps/www/src/lib/registry/new-york/example/TagsInputComboboxDemo.vue +++ b/apps/www/src/lib/registry/new-york/example/TagsInputComboboxDemo.vue @@ -7,7 +7,7 @@ import { TagsInput, TagsInputInput, TagsInputItem, TagsInputItemDelete, TagsInpu const frameworks = [ { value: 'next.js', label: 'Next.js' }, { value: 'sveltekit', label: 'SvelteKit' }, - { value: 'nuxt.js', label: 'Nuxt.js' }, + { value: 'nuxt', label: 'Nuxt' }, { value: 'remix', label: 'Remix' }, { value: 'astro', label: 'Astro' }, ]