@pdg/react-admin-layout 1.0.30 → 1.0.32

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 +1 @@
1
- export * from './types';
1
+ export * from './types';
@@ -1,13 +1,13 @@
1
- import { CSSProperties, ReactNode } from 'react';
2
- import { SxProps } from '@mui/system';
3
- import { Theme } from '@mui/material/styles';
4
- export type PartialPick<T, K extends keyof T> = Partial<Pick<T, K>>;
5
- export type PartialOmit<T, K extends keyof T> = Partial<Omit<T, K>>;
6
- export interface CommonProps {
7
- children?: ReactNode;
8
- className?: string;
9
- style?: CSSProperties;
10
- }
11
- export interface CommonSxProps extends CommonProps {
12
- sx?: SxProps<Theme>;
13
- }
1
+ import { CSSProperties, ReactNode } from 'react';
2
+ import { SxProps } from '@mui/system';
3
+ import { Theme } from '@mui/material/styles';
4
+ export type PartialPick<T, K extends keyof T> = Partial<Pick<T, K>>;
5
+ export type PartialOmit<T, K extends keyof T> = Partial<Omit<T, K>>;
6
+ export interface CommonProps {
7
+ children?: ReactNode;
8
+ className?: string;
9
+ style?: CSSProperties;
10
+ }
11
+ export interface CommonSxProps extends CommonProps {
12
+ sx?: SxProps<Theme>;
13
+ }
@@ -1,4 +1,4 @@
1
- import React from 'react';
2
- import { CardLayoutProps } from './CardLayout.types';
3
- declare const CardLayout: React.FC<CardLayoutProps>;
4
- export default CardLayout;
1
+ import React from 'react';
2
+ import { CardLayoutProps } from './CardLayout.types';
3
+ declare const CardLayout: React.FC<CardLayoutProps>;
4
+ export default CardLayout;
@@ -1,7 +1,6 @@
1
- import { ReactNode } from 'react';
2
- import { CardProps } from '@mui/material';
3
- export interface CardLayoutProps extends Partial<CardProps> {
4
- children?: ReactNode;
5
- backgroundColor?: string;
6
- }
7
- export declare const CardLayoutDefaultProps: Pick<CardLayoutProps, 'backgroundColor'>;
1
+ import { ReactNode } from 'react';
2
+ import { CardProps } from '@mui/material';
3
+ export interface CardLayoutProps extends Partial<CardProps> {
4
+ children?: ReactNode;
5
+ backgroundColor?: string;
6
+ }
@@ -1,3 +1,3 @@
1
- import CardLayout from './CardLayout';
2
- export default CardLayout;
3
- export { CardLayout };
1
+ import CardLayout from './CardLayout';
2
+ export default CardLayout;
3
+ export { CardLayout };
@@ -1,4 +1,4 @@
1
- import React from 'react';
2
- import { DefaultLayoutProps } from './DefaultLayout.types';
3
- declare const DefaultLayout: React.FC<DefaultLayoutProps>;
4
- export default DefaultLayout;
1
+ import React from 'react';
2
+ import { DefaultLayoutProps } from './DefaultLayout.types';
3
+ declare const DefaultLayout: React.FC<DefaultLayoutProps>;
4
+ export default DefaultLayout;
@@ -1,17 +1,17 @@
1
- /// <reference types="react" />
2
- export declare const SIDE_MENU_WIDTH = 220;
3
- export declare const StyledContainerBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
4
- ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
5
- }, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
6
- export declare const StyledAppBar: import("@emotion/styled").StyledComponent<import("@mui/material").AppBarOwnProps & Omit<import("@mui/material").PaperOwnProps, "color" | "position" | "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
7
- ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
8
- }, "style" | "className" | "color" | "children" | "position" | "sx" | "classes" | "elevation" | "square" | "variant" | "enableColorOnDark"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
9
- export declare const StyledSideMenuContainerBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
10
- ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
11
- }, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
12
- export declare const StyledSideMenuTemporaryDrawer: import("@emotion/styled").StyledComponent<import("@mui/material").DrawerProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
13
- export declare const StyledSideMenuPermanentDrawer: import("@emotion/styled").StyledComponent<import("@mui/material").DrawerProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
14
- export declare const StyledMainBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
15
- ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
16
- }, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
17
- export declare const StyledMainContentDiv: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
1
+ /// <reference types="react" />
2
+ export declare const SIDE_MENU_WIDTH = 220;
3
+ export declare const StyledContainerBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
4
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
5
+ }, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
6
+ export declare const StyledAppBar: import("@emotion/styled").StyledComponent<import("@mui/material").AppBarOwnProps & Omit<import("@mui/material").PaperOwnProps, "color" | "position" | "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
7
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
8
+ }, "style" | "className" | "color" | "children" | "position" | "sx" | "classes" | "elevation" | "square" | "variant" | "enableColorOnDark"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
9
+ export declare const StyledSideMenuContainerBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
10
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
11
+ }, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
12
+ export declare const StyledSideMenuTemporaryDrawer: import("@emotion/styled").StyledComponent<import("@mui/material").DrawerProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
13
+ export declare const StyledSideMenuPermanentDrawer: import("@emotion/styled").StyledComponent<import("@mui/material").DrawerProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
14
+ export declare const StyledMainBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
15
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
16
+ }, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
17
+ export declare const StyledMainContentDiv: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,29 +1,29 @@
1
- import { ReactNode } from 'react';
2
- import { CommonSxProps } from '../@types';
3
- import { BadgeProps } from '@mui/material';
4
- export interface SubMenuItem {
5
- id: string;
6
- name: string;
7
- depth: number;
8
- uri: string;
9
- badge?: number;
10
- badgeVariant?: BadgeProps['variant'];
11
- }
12
- export interface MenuItem {
13
- id: string;
14
- name: string;
15
- depth: number;
16
- uri?: string;
17
- icon?: string;
18
- badge?: number;
19
- badgeVariant?: BadgeProps['variant'];
20
- items?: SubMenuItem[];
21
- }
22
- export interface DefaultLayoutProps extends CommonSxProps {
23
- logo: ReactNode;
24
- badgeVariant?: BadgeProps['variant'];
25
- menu?: MenuItem[];
26
- appBarControl?: ReactNode;
27
- menuHideScreen?: 'xs' | 'sm' | 'md' | 'lg';
28
- onMenuClick?(menuItem: MenuItem): void;
29
- }
1
+ import { ReactNode } from 'react';
2
+ import { CommonSxProps } from '../@types';
3
+ import { BadgeProps } from '@mui/material';
4
+ export interface SubMenuItem {
5
+ id: string;
6
+ name: string;
7
+ depth: number;
8
+ uri: string;
9
+ badge?: number;
10
+ badgeVariant?: BadgeProps['variant'];
11
+ }
12
+ export interface MenuItem {
13
+ id: string;
14
+ name: string;
15
+ depth: number;
16
+ uri?: string;
17
+ icon?: string;
18
+ badge?: number;
19
+ badgeVariant?: BadgeProps['variant'];
20
+ items?: SubMenuItem[];
21
+ }
22
+ export interface DefaultLayoutProps extends CommonSxProps {
23
+ logo: ReactNode;
24
+ badgeVariant?: BadgeProps['variant'];
25
+ menu?: MenuItem[];
26
+ appBarControl?: ReactNode;
27
+ menuHideScreen?: 'xs' | 'sm' | 'md' | 'lg';
28
+ onMenuClick?(menuItem: MenuItem): void;
29
+ }
@@ -1,9 +1,9 @@
1
- export interface MenuTitle {
2
- name: string;
3
- icon?: string;
4
- parentName?: string;
5
- parentIcon?: string;
6
- }
7
- export interface MenuTitleMap {
8
- [key: string]: MenuTitle;
9
- }
1
+ export interface MenuTitle {
2
+ name: string;
3
+ icon?: string;
4
+ parentName?: string;
5
+ parentIcon?: string;
6
+ }
7
+ export interface MenuTitleMap {
8
+ [key: string]: MenuTitle;
9
+ }
@@ -1,4 +1,4 @@
1
- import React from 'react';
2
- import { SideMenuProps } from './SideMenu.types';
3
- declare const SideMenu: React.FC<SideMenuProps>;
4
- export default SideMenu;
1
+ import React from 'react';
2
+ import { SideMenuProps } from './SideMenu.types';
3
+ declare const SideMenu: React.FC<SideMenuProps>;
4
+ export default SideMenu;
@@ -1,5 +1,5 @@
1
- /// <reference types="react" />
2
- export declare const StyledSimpleBar: import("@emotion/styled").StyledComponent<import("simplebar-react").Props & import("react").RefAttributes<import("simplebar-core").default | null> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
3
- export declare const StyledLogoContainerBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
4
- ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
5
- }, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
1
+ /// <reference types="react" />
2
+ export declare const StyledSimpleBar: import("@emotion/styled").StyledComponent<import("simplebar-react").Props & import("react").RefAttributes<import("simplebar-core").default | null> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
3
+ export declare const StyledLogoContainerBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
4
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
5
+ }, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
@@ -1,5 +1,5 @@
1
- import { ReactNode } from 'react';
2
- import { SideMenuListProps } from '../SideMenuList';
3
- export interface SideMenuProps extends SideMenuListProps {
4
- logo: ReactNode;
5
- }
1
+ import { ReactNode } from 'react';
2
+ import { SideMenuListProps } from '../SideMenuList';
3
+ export interface SideMenuProps extends SideMenuListProps {
4
+ logo: ReactNode;
5
+ }
@@ -1,4 +1,4 @@
1
- import SideMenu from "./SideMenu";
2
- export default SideMenu;
3
- export { SideMenu };
4
- export * from "./SideMenu.types";
1
+ import SideMenu from "./SideMenu";
2
+ export default SideMenu;
3
+ export { SideMenu };
4
+ export * from "./SideMenu.types";
@@ -1,4 +1,4 @@
1
- import React from 'react';
2
- import { SideMenuListProps } from './SideMenuList.types';
3
- declare const SideMenuList: React.FC<SideMenuListProps>;
4
- export default SideMenuList;
1
+ import React from 'react';
2
+ import { SideMenuListProps } from './SideMenuList.types';
3
+ declare const SideMenuList: React.FC<SideMenuListProps>;
4
+ export default SideMenuList;
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
2
- export declare const StyledList: import("@emotion/styled").StyledComponent<import("@mui/material").ListOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & {
3
- ref?: ((instance: HTMLUListElement | null) => void) | import("react").RefObject<HTMLUListElement> | null | undefined;
4
- }, "className" | "style" | "classes" | "children" | "dense" | "disablePadding" | "subheader" | "sx"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
1
+ /// <reference types="react" />
2
+ export declare const StyledList: import("@emotion/styled").StyledComponent<import("@mui/material").ListOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & {
3
+ ref?: ((instance: HTMLUListElement | null) => void) | import("react").RefObject<HTMLUListElement> | null | undefined;
4
+ }, "className" | "style" | "classes" | "children" | "dense" | "disablePadding" | "subheader" | "sx"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
@@ -1,7 +1,7 @@
1
- import { MenuItem } from '../DefaultLayout.types';
2
- import { BadgeProps } from '@mui/material';
3
- export interface SideMenuListProps {
4
- list: MenuItem[];
5
- badgeVariant?: BadgeProps['variant'];
6
- onClick?(menuItem: MenuItem): void;
7
- }
1
+ import { MenuItem } from '../DefaultLayout.types';
2
+ import { BadgeProps } from '@mui/material';
3
+ export interface SideMenuListProps {
4
+ list: MenuItem[];
5
+ badgeVariant?: BadgeProps['variant'];
6
+ onClick?(menuItem: MenuItem): void;
7
+ }
@@ -1,4 +1,4 @@
1
- import SideMenuList from "./SideMenuList";
2
- export default SideMenuList;
3
- export { SideMenuList };
4
- export * from "./SideMenuList.types";
1
+ import SideMenuList from "./SideMenuList";
2
+ export default SideMenuList;
3
+ export { SideMenuList };
4
+ export * from "./SideMenuList.types";
@@ -1,4 +1,4 @@
1
- import React from 'react';
2
- import { SideMenuListItemProps } from './SideMenuListItem.types';
3
- declare const SideMenuListItem: React.FC<SideMenuListItemProps>;
4
- export default SideMenuListItem;
1
+ import React from 'react';
2
+ import { SideMenuListItemProps } from './SideMenuListItem.types';
3
+ declare const SideMenuListItem: React.FC<SideMenuListItemProps>;
4
+ export default SideMenuListItem;
@@ -1,7 +1,7 @@
1
- import { MenuItem } from '../DefaultLayout.types';
2
- import { BadgeProps } from '@mui/material';
3
- export interface SideMenuListItemProps {
4
- info: MenuItem;
5
- badgeVariant?: BadgeProps['variant'];
6
- onClick?(menuItem: MenuItem): void;
7
- }
1
+ import { MenuItem } from '../DefaultLayout.types';
2
+ import { BadgeProps } from '@mui/material';
3
+ export interface SideMenuListItemProps {
4
+ info: MenuItem;
5
+ badgeVariant?: BadgeProps['variant'];
6
+ onClick?(menuItem: MenuItem): void;
7
+ }
@@ -1,4 +1,4 @@
1
- import SideMenuListItem from "./SideMenuListItem";
2
- export default SideMenuListItem;
3
- export { SideMenuListItem };
4
- export * from "./SideMenuListItem.types";
1
+ import SideMenuListItem from "./SideMenuListItem";
2
+ export default SideMenuListItem;
3
+ export { SideMenuListItem };
4
+ export * from "./SideMenuListItem.types";
@@ -1,9 +1,9 @@
1
- import React from 'react';
2
- export interface TitleProps {
3
- title: string;
4
- icon?: string;
5
- headTitle?: string;
6
- headIcon?: string;
7
- }
8
- declare const Title: React.FC<TitleProps>;
9
- export default Title;
1
+ import React from 'react';
2
+ export interface TitleProps {
3
+ title: string;
4
+ icon?: string;
5
+ headTitle?: string;
6
+ headIcon?: string;
7
+ }
8
+ declare const Title: React.FC<TitleProps>;
9
+ export default Title;
@@ -1,18 +1,18 @@
1
- /// <reference types="react" />
2
- export declare const StyledContainerBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
3
- ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
4
- }, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
5
- export declare const StyledHeadContainerBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
6
- ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
7
- }, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
8
- export declare const StyledHeadIconContainerBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
9
- ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
10
- }, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
11
- export declare const StyledHeadIcon: import("@emotion/styled").StyledComponent<import("@mui/material").IconOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
12
- ref?: ((instance: HTMLSpanElement | null) => void) | import("react").RefObject<HTMLSpanElement> | null | undefined;
13
- }, "style" | "className" | "color" | "children" | "fontSize" | "sx" | "classes" | "baseClassName"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
14
- export declare const StyledHeadTitleTypography: import("@emotion/styled").StyledComponent<import("@mui/material").TypographyOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
15
- ref?: ((instance: HTMLSpanElement | null) => void) | import("react").RefObject<HTMLSpanElement> | null | undefined;
16
- }, "p" | "style" | "className" | "color" | "children" | "border" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "borderColor" | "borderRadius" | "display" | "displayPrint" | "overflow" | "textOverflow" | "visibility" | "whiteSpace" | "flexBasis" | "flexDirection" | "flexWrap" | "justifyContent" | "alignItems" | "alignContent" | "order" | "flex" | "flexGrow" | "flexShrink" | "alignSelf" | "justifyItems" | "justifySelf" | "gap" | "columnGap" | "rowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "bgcolor" | "zIndex" | "position" | "top" | "right" | "bottom" | "left" | "boxShadow" | "width" | "maxWidth" | "minWidth" | "height" | "maxHeight" | "minHeight" | "boxSizing" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "pt" | "pr" | "pb" | "pl" | "px" | "py" | "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft" | "marginX" | "marginY" | "marginInline" | "marginInlineStart" | "marginInlineEnd" | "marginBlock" | "marginBlockStart" | "marginBlockEnd" | "padding" | "paddingTop" | "paddingRight" | "paddingBottom" | "paddingLeft" | "paddingX" | "paddingY" | "paddingInline" | "paddingInlineStart" | "paddingInlineEnd" | "paddingBlock" | "paddingBlockStart" | "paddingBlockEnd" | "typography" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "letterSpacing" | "lineHeight" | "textAlign" | "textTransform" | "sx" | "classes" | "align" | "gutterBottom" | "noWrap" | "paragraph" | "variant" | "variantMapping"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
17
- export declare const StyledTitleContainerDiv: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
18
- export declare const StyledTitleIconContainerDiv: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
1
+ /// <reference types="react" />
2
+ export declare const StyledContainerBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
3
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
4
+ }, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
5
+ export declare const StyledHeadContainerBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
6
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
7
+ }, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
8
+ export declare const StyledHeadIconContainerBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
9
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
10
+ }, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
11
+ export declare const StyledHeadIcon: import("@emotion/styled").StyledComponent<import("@mui/material").IconOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
12
+ ref?: ((instance: HTMLSpanElement | null) => void) | import("react").RefObject<HTMLSpanElement> | null | undefined;
13
+ }, "style" | "className" | "color" | "children" | "fontSize" | "sx" | "classes" | "baseClassName"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
14
+ export declare const StyledHeadTitleTypography: import("@emotion/styled").StyledComponent<import("@mui/material").TypographyOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
15
+ ref?: ((instance: HTMLSpanElement | null) => void) | import("react").RefObject<HTMLSpanElement> | null | undefined;
16
+ }, "p" | "style" | "className" | "color" | "children" | "border" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "borderColor" | "borderRadius" | "display" | "displayPrint" | "overflow" | "textOverflow" | "visibility" | "whiteSpace" | "flexBasis" | "flexDirection" | "flexWrap" | "justifyContent" | "alignItems" | "alignContent" | "order" | "flex" | "flexGrow" | "flexShrink" | "alignSelf" | "justifyItems" | "justifySelf" | "gap" | "columnGap" | "rowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "bgcolor" | "zIndex" | "position" | "top" | "right" | "bottom" | "left" | "boxShadow" | "width" | "maxWidth" | "minWidth" | "height" | "maxHeight" | "minHeight" | "boxSizing" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "pt" | "pr" | "pb" | "pl" | "px" | "py" | "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft" | "marginX" | "marginY" | "marginInline" | "marginInlineStart" | "marginInlineEnd" | "marginBlock" | "marginBlockStart" | "marginBlockEnd" | "padding" | "paddingTop" | "paddingRight" | "paddingBottom" | "paddingLeft" | "paddingX" | "paddingY" | "paddingInline" | "paddingInlineStart" | "paddingInlineEnd" | "paddingBlock" | "paddingBlockStart" | "paddingBlockEnd" | "typography" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "letterSpacing" | "lineHeight" | "textAlign" | "textTransform" | "sx" | "classes" | "align" | "gutterBottom" | "noWrap" | "paragraph" | "variant" | "variantMapping"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
17
+ export declare const StyledTitleContainerDiv: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
18
+ export declare const StyledTitleIconContainerDiv: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,4 +1,4 @@
1
- import DefaultLayout from './DefaultLayout';
2
- export default DefaultLayout;
3
- export { DefaultLayout };
4
- export * from './DefaultLayout.types';
1
+ import DefaultLayout from './DefaultLayout';
2
+ export default DefaultLayout;
3
+ export { DefaultLayout };
4
+ export * from './DefaultLayout.types';
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import './sass/index.scss';
2
- export * from './CardLayout';
3
- export * from './DefaultLayout';
1
+ import './sass/index.scss';
2
+ export * from './CardLayout';
3
+ export * from './DefaultLayout';