@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.
package/lib/index.d.ts CHANGED
@@ -24,6 +24,7 @@ import { FormGroupProps } from '@mui/material/FormGroup';
24
24
  import { FormLabelProps } from '@mui/material/FormLabel';
25
25
  import { ForwardRefExoticComponent } from 'react';
26
26
  import { Grid2Props } from '@mui/material/Grid2';
27
+ import { Grid2Props as Grid2Props_2 } from '@mui/material';
27
28
  import { GridColDef } from '@mui/x-data-grid-premium';
28
29
  import { GridColumnVisibilityModel } from '@mui/x-data-grid-premium';
29
30
  import { GridRenderCellParams } from '@mui/x-data-grid-premium';
@@ -83,6 +84,14 @@ declare type ActionType = {
83
84
  onClick: () => void;
84
85
  };
85
86
 
87
+ declare type BaseContentLayoutProps = {
88
+ containerProps?: Grid2Props_2;
89
+ leftContent: React.ReactNode;
90
+ rightContent: React.ReactNode;
91
+ leftProps?: Grid2Props_2;
92
+ rightProps?: Grid2Props_2;
93
+ };
94
+
86
95
  declare type BreadcrumbProps = {
87
96
  breadcrumbs: HeaderLink[];
88
97
  };
@@ -208,6 +217,22 @@ declare type FiveThreeSplitContentLayoutProps = {
208
217
 
209
218
  export declare const FormSkeletonGrid: ({ skeletonRows, skeletonColumns, }: SkeletonGridType) => JSX_2.Element;
210
219
 
220
+ export declare function FullContentLayout({ children, itemProps, containerProps, }: FullContentLayoutProps): JSX_2.Element;
221
+
222
+ export declare const FullContentLayoutPageObject: FullContentLayoutPageObject_2;
223
+
224
+ declare class FullContentLayoutPageObject_2 {
225
+ baseSelector: string;
226
+ get element(): Cypress.Chainable<JQuery<HTMLElement>>;
227
+ get content(): Cypress.Chainable<JQuery<HTMLElement>>;
228
+ }
229
+
230
+ declare type FullContentLayoutProps = {
231
+ children: React.ReactNode;
232
+ containerProps?: Grid2Props_2;
233
+ itemProps?: Grid2Props_2;
234
+ };
235
+
211
236
  declare type GalleryContentProps = {
212
237
  description?: string;
213
238
  buttonProps?: ButtonProps & {
@@ -1007,6 +1032,17 @@ declare type SkeletonGridType = {
1007
1032
 
1008
1033
  export declare function SnackbarActionButton({ closeSnackbar, label, ...buttonProps }: InkSnackbarActionButtonProps): JSX_2.Element;
1009
1034
 
1035
+ export declare function SplitContentLayout({ containerProps, leftContent, rightContent, leftProps, rightProps, }: BaseContentLayoutProps): JSX_2.Element;
1036
+
1037
+ export declare const SplitContentLayoutPageObject: SplitContentLayoutPageObject_2;
1038
+
1039
+ declare class SplitContentLayoutPageObject_2 {
1040
+ baseSelector: string;
1041
+ get element(): Cypress.Chainable<JQuery<HTMLElement>>;
1042
+ get leftContent(): Cypress.Chainable<JQuery<HTMLElement>>;
1043
+ get rightContent(): Cypress.Chainable<JQuery<HTMLElement>>;
1044
+ }
1045
+
1010
1046
  export declare function TenColumnFullContentLayout({ children, itemProps, containerProps, }: TenColumnFullContentLayoutProps): JSX_2.Element;
1011
1047
 
1012
1048
  declare type TenColumnFullContentLayoutProps = {