@movable/ui 3.16.0-oidc.0 → 3.16.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.
@@ -0,0 +1,10 @@
1
+ import { Grid2Props as GridProps } from '@mui/material';
2
+ type FourEightSplitContentLayoutProps = {
3
+ leftContent: React.ReactNode;
4
+ rightContent: React.ReactNode;
5
+ containerProps?: GridProps;
6
+ leftProps?: GridProps;
7
+ rightProps?: GridProps;
8
+ };
9
+ export default function FourEightSplitContentLayout({ leftContent, rightContent, containerProps, leftProps, rightProps, }: FourEightSplitContentLayoutProps): import("react/jsx-runtime").JSX.Element;
10
+ export {};
@@ -0,0 +1,8 @@
1
+ import { Grid2Props as GridProps } from '@mui/material';
2
+ type TwelveColumnFullContentLayoutProps = {
3
+ children: React.ReactNode;
4
+ containerProps?: GridProps;
5
+ itemProps?: GridProps;
6
+ };
7
+ export default function TwelveColumnFullContentLayout({ children, containerProps, itemProps, }: TwelveColumnFullContentLayoutProps): import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,7 +1,9 @@
1
1
  export { default as FullContentLayout } from './FullContentLayout';
2
2
  export { default as EightColumnFullContentLayout } from './EightColumnFullContentLayout';
3
3
  export { default as TenColumnFullContentLayout } from './TenColumnFullContentLayout';
4
+ export { default as TwelveColumnFullContentLayout } from './TwelveColumnFullContentLayout';
4
5
  export { default as SplitContentLayout } from './SplitContentLayout';
5
6
  export { default as FiveThreeSplitContentLayout } from './FiveThreeSplitContentLayout';
6
7
  export { default as SevenThreeSplitContentLayout } from './SevenThreeSplitContentLayout';
8
+ export { default as FourEightSplitContentLayout } from './FourEightSplitContentLayout';
7
9
  export { default as PanelWithPaperContentLayout } from './PanelWithPaperContentLayout';
package/package.json CHANGED
@@ -1,12 +1,16 @@
1
1
  {
2
2
  "name": "@movable/ui",
3
- "version": "3.16.0-oidc.0",
3
+ "version": "3.16.0",
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",
7
7
  "files": [
8
8
  "lib"
9
9
  ],
10
+ "workspaces": [
11
+ "eslint-plugin-ui",
12
+ "mcp-server"
13
+ ],
10
14
  "scripts": {
11
15
  "build": "vite build",
12
16
  "build-storybook": "storybook build",
@@ -44,6 +48,7 @@
44
48
  "@commitlint/config-conventional": "^17.6.7",
45
49
  "@emotion/react": "^11.11.1",
46
50
  "@emotion/styled": "^11.11.0",
51
+ "@movable/eslint-plugin-ui": "*",
47
52
  "@movable/prettier-config": "^2.0.0",
48
53
  "@mui/icons-material": "^6.5.0",
49
54
  "@mui/material": "^6.5.0",
@@ -89,6 +94,7 @@
89
94
  "react-hook-form": "^7.48.2",
90
95
  "react-router-dom": "^6.20.1",
91
96
  "release-it": "^16.1.3",
97
+ "remark-gfm": "^4.0.1",
92
98
  "storybook": "^9.1.4",
93
99
  "typescript": "^5.9.3",
94
100
  "vite": "^7.2.2",