Skip to content

Commit f2e9c4e

Browse files
chore(deps): update nuxt framework to ^4.4.8 (#54)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
1 parent 4a73048 commit f2e9c4e

4 files changed

Lines changed: 1003 additions & 984 deletions

File tree

app/components/chat/ChatPrompt.vue

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
<script setup lang="ts">
22
import type { ChatStatus } from 'ai'
3-
import type { ChatPromptProps } from '@nuxt/ui'
43
5-
const props = defineProps<ChatPromptProps & {
4+
const props = defineProps<{
65
status: ChatStatus
7-
error?: Error | null
6+
error?: Error
87
selectedModel?: string
8+
variant?: 'outline' | 'soft' | 'subtle' | 'naked'
9+
disabled?: boolean
10+
class?: any
911
}>()
1012
1113
const emit = defineEmits<{

app/components/filters/FiltersButton.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,13 @@
22
import type { ButtonProps, ButtonSlots } from '@nuxt/ui'
33
import type { Filter } from '~/composables/useFilters'
44
5-
withDefaults(defineProps<Pick<ButtonProps, 'color' | 'variant' | 'activeColor' | 'activeVariant' | 'active'> & {
5+
withDefaults(defineProps<{
66
filter: Filter
7+
color?: ButtonProps['color']
8+
variant?: ButtonProps['variant']
9+
activeColor?: ButtonProps['activeColor']
10+
activeVariant?: ButtonProps['activeVariant']
11+
active?: boolean
712
}>(), {
813
color: 'neutral',
914
variant: 'outline',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"ai": "^6.0.198",
3939
"drizzle-kit": "^0.31.10",
4040
"drizzle-orm": "^0.45.2",
41-
"nuxt": "^4.4.5",
41+
"nuxt": "^4.4.8",
4242
"nuxt-auth-utils": "^0.5.29",
4343
"nuxt-charts": "^2.1.4",
4444
"octokit": "^5.0.5",

0 commit comments

Comments
 (0)