|
|
@@ -22,6 +22,8 @@ export type IMenuRef = {
|
|
|
export type MenuDynamicStyle = {
|
|
|
spaces: NCoreUIKit.ActivePalette["spaces"];
|
|
|
colors: NCoreUIKit.ActivePalette["colors"];
|
|
|
+ customBackgroundColor?: string;
|
|
|
+ glassEffect?: number;
|
|
|
};
|
|
|
|
|
|
export type MenuLogoType = {
|
|
|
@@ -53,6 +55,7 @@ interface IMenuProps {
|
|
|
};
|
|
|
navigation: NCoreUIKit.Navigation;
|
|
|
isWorkWithSafeAreaView?: boolean;
|
|
|
+ customBackgroundColor?: string;
|
|
|
isAutoClosedOnClosed?: boolean;
|
|
|
siteLogoProps?: ISiteLogoProps;
|
|
|
renderHeader?: () => ReactNode;
|
|
|
@@ -65,6 +68,7 @@ interface IMenuProps {
|
|
|
modalProps?: IModalProps;
|
|
|
isCollapsible?: boolean;
|
|
|
isAutoClosed?: boolean;
|
|
|
+ glassEffect?: number;
|
|
|
isCollapse?: boolean;
|
|
|
onOpened?: (props: {
|
|
|
id?: string
|