[5d6f37a] | 1 | import { NavConfigProps } from './types';
|
---|
| 2 |
|
---|
| 3 | // ----------------------------------------------------------------------
|
---|
| 4 |
|
---|
| 5 | export const navVerticalConfig = (config?: NavConfigProps) => ({
|
---|
| 6 | itemGap: config?.itemGap || 4,
|
---|
| 7 | iconSize: config?.iconSize || 24,
|
---|
| 8 | currentRole: config?.currentRole,
|
---|
| 9 | itemRootHeight: config?.itemRootHeight || 44,
|
---|
| 10 | itemSubHeight: config?.itemSubHeight || 36,
|
---|
| 11 | itemPadding: config?.itemPadding || '4px 8px 4px 12px',
|
---|
| 12 | itemRadius: config?.itemRadius || 8,
|
---|
| 13 | hiddenLabel: config?.hiddenLabel || false,
|
---|
| 14 | });
|
---|
| 15 |
|
---|
| 16 | export const navMiniConfig = (config?: NavConfigProps) => ({
|
---|
| 17 | itemGap: config?.itemGap || 4,
|
---|
| 18 | iconSize: config?.iconSize || 22,
|
---|
| 19 | currentRole: config?.currentRole,
|
---|
| 20 | itemRootHeight: config?.itemRootHeight || 56,
|
---|
| 21 | itemSubHeight: config?.itemSubHeight || 34,
|
---|
| 22 | itemPadding: config?.itemPadding || '6px 0 0 0',
|
---|
| 23 | itemRadius: config?.itemRadius || 6,
|
---|
| 24 | hiddenLabel: config?.hiddenLabel || false,
|
---|
| 25 | });
|
---|
| 26 |
|
---|
| 27 | export const navHorizontalConfig = (config?: NavConfigProps) => ({
|
---|
| 28 | itemGap: config?.itemGap || 6,
|
---|
| 29 | iconSize: config?.iconSize || 22,
|
---|
| 30 | currentRole: config?.currentRole,
|
---|
| 31 | itemRootHeight: config?.itemRootHeight || 32,
|
---|
| 32 | itemSubHeight: config?.itemSubHeight || 34,
|
---|
| 33 | itemPadding: config?.itemPadding || '0 6px 0 6px',
|
---|
| 34 | itemRadius: config?.itemRadius || 6,
|
---|
| 35 | hiddenLabel: config?.hiddenLabel || false,
|
---|
| 36 | });
|
---|