@movable/ui 3.14.0-alpha.0 → 3.14.1

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,8 @@
1
+ import { Grid2Props as GridProps } from '@mui/material';
2
+ type FullContentLayoutProps = {
3
+ children: React.ReactNode;
4
+ containerProps?: GridProps;
5
+ itemProps?: GridProps;
6
+ };
7
+ export default function FullContentLayout({ children, itemProps, containerProps, }: FullContentLayoutProps): import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,10 @@
1
+ import { Grid2Props as GridProps } from '@mui/material';
2
+ type BaseContentLayoutProps = {
3
+ containerProps?: GridProps;
4
+ leftContent: React.ReactNode;
5
+ rightContent: React.ReactNode;
6
+ leftProps?: GridProps;
7
+ rightProps?: GridProps;
8
+ };
9
+ export default function FullContentLayout({ containerProps, leftContent, rightContent, leftProps, rightProps, }: BaseContentLayoutProps): import("react/jsx-runtime").JSX.Element;
10
+ export {};
@@ -1,2 +1,7 @@
1
+ export { default as FullContentLayout } from './FullContentLayout';
1
2
  export { default as EightColumnFullContentLayout } from './EightColumnFullContentLayout';
2
3
  export { default as TenColumnFullContentLayout } from './TenColumnFullContentLayout';
4
+ export { default as SplitContentLayout } from './SplitContentLayout';
5
+ export { default as FiveThreeSplitContentLayout } from './FiveThreeSplitContentLayout';
6
+ export { default as SevenThreeSplitContentLayout } from './SevenThreeSplitContentLayout';
7
+ export { default as PanelWithPaperContentLayout } from './PanelWithPaperContentLayout';
@@ -1,8 +1,4 @@
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';
4
+ export * from './content-layouts';
@@ -8,3 +8,4 @@ export { default as InkSwitchPageObject } from './ink-switch';
8
8
  export { default as inkPageHeader, InkPageHeaderPageObject, LinkBreadcrumbsPageObject, } from './ink-page-header';
9
9
  export { default as inkWorkflowHeader, InkWorkflowHeaderPageObject, } from './ink-workflow-header';
10
10
  export { default as InkImagePageObject } from './ink-image';
11
+ export * from './layouts/index';
@@ -0,0 +1,7 @@
1
+ declare class FullContentLayoutPageObject {
2
+ baseSelector: string;
3
+ get element(): Cypress.Chainable<JQuery<HTMLElement>>;
4
+ get content(): Cypress.Chainable<JQuery<HTMLElement>>;
5
+ }
6
+ declare const _default: FullContentLayoutPageObject;
7
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export { default as FullContentLayoutPageObject } from './full-content-layout';
2
+ export { default as SplitContentLayoutPageObject } from './split-content-layout';
@@ -0,0 +1,8 @@
1
+ declare class SplitContentLayoutPageObject {
2
+ baseSelector: string;
3
+ get element(): Cypress.Chainable<JQuery<HTMLElement>>;
4
+ get leftContent(): Cypress.Chainable<JQuery<HTMLElement>>;
5
+ get rightContent(): Cypress.Chainable<JQuery<HTMLElement>>;
6
+ }
7
+ declare const _default: SplitContentLayoutPageObject;
8
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@movable/ui",
3
- "version": "3.14.0-alpha.0",
3
+ "version": "3.14.1",
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",