From b998522b05613c864d4d738ce01d25c77cefb09e Mon Sep 17 00:00:00 2001 From: Paul Valerie GOMA Date: Wed, 30 Jul 2025 10:48:33 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F=20=20Menu=20bar=20compone?= =?UTF-8?q?nt=20interface=20file=20updated?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/menu/IVMenuBar.type.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/menu/IVMenuBar.type.ts b/src/components/menu/IVMenuBar.type.ts index cd86ae2..3ab604e 100644 --- a/src/components/menu/IVMenuBar.type.ts +++ b/src/components/menu/IVMenuBar.type.ts @@ -31,7 +31,7 @@ export interface IVMenuBarLinks { * Extends PrimeVue's MenuItem with optional routing capabilities. * Excludes 'style' and 'class' to avoid conflicts with Vue attributes. */ -export interface IVMenuItem +export interface IVMenuBarItem extends Partial>, Partial> {} @@ -61,7 +61,7 @@ export default interface IVMenuBar { placeholder?: string; /** List of quick link items with additional HTML attributes */ - quickLinks?: (IVMenuItem & HTMLAttributes)[]; + quickLinks?: (IVMenuBarItem & HTMLAttributes)[]; /** Label for the search input (accessibility) */ searchLabel?: string;