Skip to content
Merged
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
8 changes: 5 additions & 3 deletions app/components/chat/ChatPrompt.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<script setup lang="ts">
import type { ChatStatus } from 'ai'
import type { ChatPromptProps } from '@nuxt/ui'

const props = defineProps<ChatPromptProps & {
const props = defineProps<{
status: ChatStatus
error?: Error | null
error?: Error
selectedModel?: string
variant?: 'outline' | 'soft' | 'subtle' | 'naked'
disabled?: boolean
class?: any
}>()

const emit = defineEmits<{
Expand Down
7 changes: 6 additions & 1 deletion app/components/filters/FiltersButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@
import type { ButtonProps, ButtonSlots } from '@nuxt/ui'
import type { Filter } from '~/composables/useFilters'

withDefaults(defineProps<Pick<ButtonProps, 'color' | 'variant' | 'activeColor' | 'activeVariant' | 'active'> & {
withDefaults(defineProps<{
filter: Filter
color?: ButtonProps['color']
variant?: ButtonProps['variant']
activeColor?: ButtonProps['activeColor']
activeVariant?: ButtonProps['activeVariant']
active?: boolean
}>(), {
color: 'neutral',
variant: 'outline',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"ai": "^6.0.198",
"drizzle-kit": "^0.31.10",
"drizzle-orm": "^0.45.2",
"nuxt": "^4.4.5",
"nuxt": "^4.4.8",
"nuxt-auth-utils": "^0.5.29",
"nuxt-charts": "^2.1.4",
"octokit": "^5.0.5",
Expand Down
Loading