@pdg/react-admin-layout 1.0.56 → 1.0.57
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,5 +1,5 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
import { CardProps } from '@mui/material';
|
|
1
|
+
import { type ReactNode } from 'react';
|
|
2
|
+
import { type CardProps } from '@mui/material';
|
|
3
3
|
export interface CardLayoutProps extends Partial<CardProps> {
|
|
4
4
|
children?: ReactNode;
|
|
5
5
|
backgroundColor?: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { DefaultLayoutProps as Props } from './DefaultLayout.types';
|
|
2
|
+
import { type DefaultLayoutProps as Props } from './DefaultLayout.types';
|
|
3
3
|
declare const DefaultLayout: ({ children, logo, badgeVariant, menu, menuHideScreen, appBarControl }: Props) => React.JSX.Element;
|
|
4
4
|
export default DefaultLayout;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { CSSProperties, ReactNode } from 'react';
|
|
2
|
-
import { BadgeProps } from '@mui/material';
|
|
3
|
-
import { SxProps } from '@mui/system';
|
|
4
|
-
import { Theme } from '@mui/material/styles';
|
|
1
|
+
import { type CSSProperties, type ReactNode } from 'react';
|
|
2
|
+
import { type BadgeProps } from '@mui/material';
|
|
3
|
+
import { type SxProps } from '@mui/system';
|
|
4
|
+
import { type Theme } from '@mui/material/styles';
|
|
5
5
|
export interface SubMenuItem {
|
|
6
6
|
id: string;
|
|
7
7
|
name: string;
|
package/package.json
CHANGED