@movable/ui 2.14.4-alpha.1 → 2.14.4
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.
- package/lib/index.d.ts +52 -2
- package/lib/index.mjs +1999 -1979
- package/lib/index.mjs.map +1 -1
- package/lib/layouts/DetailsLayout.d.ts +2 -1
- package/lib/layouts/WorkflowLayout.d.ts +2 -1
- package/lib/layouts/content-layouts/EightColumnFullContentLayout.d.ts +8 -0
- package/lib/layouts/content-layouts/FiveThreeSplitContentLayout.d.ts +10 -0
- package/lib/layouts/content-layouts/PanelWithPaperContentLayout.d.ts +11 -0
- package/lib/layouts/content-layouts/SevenThreeSplitContentLayout.d.ts +10 -0
- package/lib/layouts/content-layouts/TenColumnFullContentLayout.d.ts +8 -0
- package/lib/layouts/content-layouts/index.d.ts +2 -0
- package/lib/layouts/index.d.ts +5 -0
- package/package.json +2 -2
|
@@ -2,6 +2,7 @@ import { GridProps } from '@mui/material/Grid';
|
|
|
2
2
|
type LayoutDetailsProps = GridProps & {
|
|
3
3
|
Header: JSX.Element;
|
|
4
4
|
children: React.ReactNode;
|
|
5
|
+
itemProps?: GridProps;
|
|
5
6
|
};
|
|
6
|
-
export default function DetailsLayout({ Header, children, sx, ...rest }: LayoutDetailsProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default function DetailsLayout({ Header, children, sx, itemProps, ...rest }: LayoutDetailsProps): import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export {};
|
|
@@ -2,6 +2,7 @@ import { GridProps } from '@mui/material/Grid';
|
|
|
2
2
|
type WorkflowLayoutProps = GridProps & {
|
|
3
3
|
Header: JSX.Element;
|
|
4
4
|
children: React.ReactNode;
|
|
5
|
+
itemProps?: GridProps;
|
|
5
6
|
};
|
|
6
|
-
export default function WorkflowLayout({ Header, children, sx, ...rest }: WorkflowLayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default function WorkflowLayout({ Header, children, sx, itemProps, ...rest }: WorkflowLayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type GridProps } from '@mui/material';
|
|
2
|
+
type EightColumnFullContentLayoutProps = {
|
|
3
|
+
children: React.ReactNode;
|
|
4
|
+
containerProps?: GridProps;
|
|
5
|
+
itemProps?: GridProps;
|
|
6
|
+
};
|
|
7
|
+
export default function EightColumnFullContentLayout({ children, itemProps, containerProps, }: EightColumnFullContentLayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { GridProps } from '@mui/material';
|
|
2
|
+
type FiveThreeSplitContentLayoutProps = {
|
|
3
|
+
leftContent: React.ReactNode;
|
|
4
|
+
rightContent: React.ReactNode;
|
|
5
|
+
containerProps?: GridProps;
|
|
6
|
+
leftProps?: GridProps;
|
|
7
|
+
rightProps?: GridProps;
|
|
8
|
+
};
|
|
9
|
+
export default function FiveThreeSplitContentLayout({ leftContent, rightContent, containerProps, leftProps, rightProps, }: FiveThreeSplitContentLayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { GridProps, BoxProps } from '@mui/material';
|
|
2
|
+
type PanelWithPaperContentLayoutProps = React.PropsWithChildren<{
|
|
3
|
+
panelContent: React.ReactNode;
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
wrapperProps?: BoxProps;
|
|
6
|
+
panelProps?: BoxProps;
|
|
7
|
+
containerProps?: GridProps;
|
|
8
|
+
itemProps?: GridProps;
|
|
9
|
+
}>;
|
|
10
|
+
export default function PanelWithPaperContentLayout({ children, panelContent, wrapperProps, panelProps, containerProps, itemProps, }: PanelWithPaperContentLayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { GridProps } from '@mui/material';
|
|
2
|
+
type SevenThreeSplitContentLayoutProps = {
|
|
3
|
+
leftContent: React.ReactNode;
|
|
4
|
+
rightContent: React.ReactNode;
|
|
5
|
+
containerProps?: GridProps;
|
|
6
|
+
leftProps?: GridProps;
|
|
7
|
+
rightProps?: GridProps;
|
|
8
|
+
};
|
|
9
|
+
export default function SevenThreeSplitContentLayout({ leftContent, rightContent, containerProps, leftProps, rightProps, }: SevenThreeSplitContentLayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type GridProps } from '@mui/material';
|
|
2
|
+
type TenColumnFullContentLayoutProps = {
|
|
3
|
+
children: React.ReactNode;
|
|
4
|
+
containerProps?: GridProps;
|
|
5
|
+
itemProps?: GridProps;
|
|
6
|
+
};
|
|
7
|
+
export default function TenColumnFullContentLayout({ children, itemProps, containerProps, }: TenColumnFullContentLayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
package/lib/layouts/index.d.ts
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
1
|
export { default as DetailsLayout } from './DetailsLayout';
|
|
2
2
|
export { default as IndexLayout } from './IndexLayout';
|
|
3
3
|
export { default as WorkflowLayout } from './WorkflowLayout';
|
|
4
|
+
export { default as EightColumnFullContentLayout } from './content-layouts/EightColumnFullContentLayout';
|
|
5
|
+
export { default as TenColumnFullContentLayout } from './content-layouts/TenColumnFullContentLayout';
|
|
6
|
+
export { default as FiveThreeSplitContentLayout } from './content-layouts/FiveThreeSplitContentLayout';
|
|
7
|
+
export { default as SevenThreeSplitContentLayout } from './content-layouts/SevenThreeSplitContentLayout';
|
|
8
|
+
export { default as PanelWithPaperContentLayout } from './content-layouts/PanelWithPaperContentLayout';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@movable/ui",
|
|
3
|
-
"version": "2.14.4
|
|
3
|
+
"version": "2.14.4",
|
|
4
4
|
"description": "Movable Ink's shared MUI components and MUI theme for our vite applications",
|
|
5
5
|
"module": "lib/index.mjs",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -108,6 +108,6 @@
|
|
|
108
108
|
"react-helmet": "^6.1.0"
|
|
109
109
|
},
|
|
110
110
|
"volta": {
|
|
111
|
-
"node": "
|
|
111
|
+
"node": "20.19.1"
|
|
112
112
|
}
|
|
113
113
|
}
|