From 040fda8749630c08488aa1786f8a8b82e6b7779d Mon Sep 17 00:00:00 2001 From: John Leider Date: Tue, 16 Jul 2024 15:52:42 -0500 Subject: [PATCH] fix(VAppBar): scrollBehavior type for fully-hide --- packages/vuetify/src/components/VAppBar/VAppBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vuetify/src/components/VAppBar/VAppBar.tsx b/packages/vuetify/src/components/VAppBar/VAppBar.tsx index ec2b9b35708..87eb94ddb1e 100644 --- a/packages/vuetify/src/components/VAppBar/VAppBar.tsx +++ b/packages/vuetify/src/components/VAppBar/VAppBar.tsx @@ -20,7 +20,7 @@ import type { PropType } from 'vue' import type { VToolbarSlots } from '@/components/VToolbar/VToolbar' export const makeVAppBarProps = propsFactory({ - scrollBehavior: String as PropType<'hide' | 'inverted' | 'collapse' | 'elevate' | 'fade-image' | (string & {})>, + scrollBehavior: String as PropType<'hide' | 'fully-hide' | 'inverted' | 'collapse' | 'elevate' | 'fade-image' | (string & {})>, modelValue: { type: Boolean, default: true,