feat: add new 'Almoxarifado' section in sidebar and update navigation links for improved user experience and consistency across the application

This commit is contained in:
2025-12-20 13:52:30 -03:00
parent 8dd2674305
commit 8f0452bd87
9 changed files with 35 additions and 27 deletions

View File

@@ -12,7 +12,8 @@
Tag,
Users,
Briefcase,
UserPlus
UserPlus,
Package
} from 'lucide-svelte';
import { resolve } from '$app/paths';
import { page } from '$app/state';
@@ -141,6 +142,12 @@
}
]
},
{
label: 'Almoxarifado',
icon: 'Package',
link: '/almoxarifado',
permission: { recurso: 'almoxarifado', acao: 'listar' }
},
{
label: 'Objetos',
icon: 'Tag',
@@ -271,7 +278,8 @@
ChevronDown,
GitMerge,
Settings,
Tag
Tag,
Package
};
function getIconComponent(name: string): IconType {