@movable/ui 1.10.1 → 1.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,11 @@
1
+ import { LinkProps } from '@mui/material';
1
2
  type HeaderLink = {
2
3
  label: string;
3
4
  path?: string;
4
5
  onClick?: () => void;
6
+ LinkProps?: {
7
+ to: string;
8
+ } & LinkProps;
5
9
  };
6
10
  type BreadcrumbProps = {
7
11
  breadcrumbs: HeaderLink[];
@@ -1,3 +1,4 @@
1
+ import { BoxProps } from '@mui/material';
1
2
  import { DrawerProps } from '@mui/material/Drawer';
2
3
  import { PropsWithChildren } from 'react';
3
4
  type IFilterDrawer = DrawerProps & {
@@ -6,10 +7,12 @@ type IFilterDrawer = DrawerProps & {
6
7
  drawerWidth?: number;
7
8
  leftOffset?: string;
8
9
  filterContent: JSX.Element;
10
+ bottomFilter?: JSX.Element;
9
11
  headerLabel?: string;
10
12
  isComponentLevelDrawer?: boolean;
13
+ mainProps?: BoxProps;
11
14
  };
12
15
  export declare const defaultFilterDrawerWidth = 280;
13
16
  export declare function InkPersistentFilterDrawer({ isOpen, handleDrawerClose, children, drawerWidth, leftOffset, //primary nav width when closed and when open
14
- filterContent, headerLabel, sx, isComponentLevelDrawer, }: PropsWithChildren<IFilterDrawer>): import("react/jsx-runtime").JSX.Element;
17
+ filterContent, bottomFilter, headerLabel, sx, isComponentLevelDrawer, mainProps, }: PropsWithChildren<IFilterDrawer>): import("react/jsx-runtime").JSX.Element;
15
18
  export {};