source: src/components/nav-section/types.ts

main
Last change on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 922 bytes
Line 
1import { StackProps } from '@mui/material/Stack';
2import { ListItemButtonProps } from '@mui/material/ListItemButton';
3
4// ----------------------------------------------------------------------
5
6export type NavConfigProps = {
7 hiddenLabel?: boolean;
8 itemGap?: number;
9 iconSize?: number;
10 itemRadius?: number;
11 itemPadding?: string;
12 currentRole?: string;
13 itemSubHeight?: number;
14 itemRootHeight?: number;
15};
16
17export type NavItemProps = ListItemButtonProps & {
18 item: NavListProps;
19 depth: number;
20 open?: boolean;
21 active: boolean;
22 externalLink?: boolean;
23};
24
25export type NavListProps = {
26 title: string;
27 path: string;
28 icon?: React.ReactElement;
29 info?: React.ReactElement;
30 caption?: string;
31 disabled?: boolean;
32 roles?: string[];
33 children?: any;
34};
35
36export type NavSectionProps = StackProps & {
37 data: {
38 subheader: string;
39 items: NavListProps[];
40 }[];
41 config?: NavConfigProps;
42};
Note: See TracBrowser for help on using the repository browser.