@movable/ui 2.14.4-alpha.0 → 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
package/lib/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ import { FormGroupProps } from '@mui/material/FormGroup';
|
|
|
17
17
|
import { FormLabelProps } from '@mui/material/FormLabel';
|
|
18
18
|
import { ForwardRefExoticComponent } from 'react';
|
|
19
19
|
import { GridProps } from '@mui/material/Grid';
|
|
20
|
+
import { GridProps as GridProps_2 } from '@mui/material';
|
|
20
21
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
21
22
|
import { LinkProps } from '@mui/material';
|
|
22
23
|
import { ListItemIconProps } from '@mui/material/ListItemIcon';
|
|
@@ -113,7 +114,7 @@ declare type DemoComponentProps = {
|
|
|
113
114
|
stringToDisplay: string;
|
|
114
115
|
};
|
|
115
116
|
|
|
116
|
-
export declare function DetailsLayout({ Header, children, sx, ...rest }: LayoutDetailsProps): JSX_2.Element;
|
|
117
|
+
export declare function DetailsLayout({ Header, children, sx, itemProps, ...rest }: LayoutDetailsProps): JSX_2.Element;
|
|
117
118
|
|
|
118
119
|
declare type DrawerType = 'basic' | 'panel' | 'filter';
|
|
119
120
|
|
|
@@ -124,6 +125,24 @@ declare type DropdownActionType = {
|
|
|
124
125
|
internalUseOnlyItems?: ReactNode[];
|
|
125
126
|
};
|
|
126
127
|
|
|
128
|
+
export declare function EightColumnFullContentLayout({ children, itemProps, containerProps, }: EightColumnFullContentLayoutProps): JSX_2.Element;
|
|
129
|
+
|
|
130
|
+
declare type EightColumnFullContentLayoutProps = {
|
|
131
|
+
children: React.ReactNode;
|
|
132
|
+
containerProps?: GridProps_2;
|
|
133
|
+
itemProps?: GridProps_2;
|
|
134
|
+
};
|
|
135
|
+
|
|
136
|
+
export declare function FiveThreeSplitContentLayout({ leftContent, rightContent, containerProps, leftProps, rightProps, }: FiveThreeSplitContentLayoutProps): JSX_2.Element;
|
|
137
|
+
|
|
138
|
+
declare type FiveThreeSplitContentLayoutProps = {
|
|
139
|
+
leftContent: React.ReactNode;
|
|
140
|
+
rightContent: React.ReactNode;
|
|
141
|
+
containerProps?: GridProps_2;
|
|
142
|
+
leftProps?: GridProps_2;
|
|
143
|
+
rightProps?: GridProps_2;
|
|
144
|
+
};
|
|
145
|
+
|
|
127
146
|
export declare const FormSkeletonGrid: ({ skeletonRows, skeletonColumns, }: SkeletonGridType) => JSX_2.Element;
|
|
128
147
|
|
|
129
148
|
declare type HeaderLink = {
|
|
@@ -641,6 +660,7 @@ declare type IPageWrapperProps = {
|
|
|
641
660
|
declare type LayoutDetailsProps = GridProps & {
|
|
642
661
|
Header: JSX.Element;
|
|
643
662
|
children: React.ReactNode;
|
|
663
|
+
itemProps?: GridProps;
|
|
644
664
|
};
|
|
645
665
|
|
|
646
666
|
export declare function LinkBreadcrumbs({ breadcrumbs }: BreadcrumbProps): JSX_2.Element;
|
|
@@ -707,11 +727,32 @@ declare interface PanelDrawerProps extends CommonDrawerProps {
|
|
|
707
727
|
drawerType: 'panel';
|
|
708
728
|
}
|
|
709
729
|
|
|
730
|
+
export declare function PanelWithPaperContentLayout({ children, panelContent, wrapperProps, panelProps, containerProps, itemProps, }: PanelWithPaperContentLayoutProps): JSX_2.Element;
|
|
731
|
+
|
|
732
|
+
declare type PanelWithPaperContentLayoutProps = React.PropsWithChildren<{
|
|
733
|
+
panelContent: React.ReactNode;
|
|
734
|
+
children: React.ReactNode;
|
|
735
|
+
wrapperProps?: BoxProps;
|
|
736
|
+
panelProps?: BoxProps;
|
|
737
|
+
containerProps?: GridProps_2;
|
|
738
|
+
itemProps?: GridProps_2;
|
|
739
|
+
}>;
|
|
740
|
+
|
|
710
741
|
declare type PrimaryButtonType = ButtonProps & {
|
|
711
742
|
label: string;
|
|
712
743
|
loading?: boolean;
|
|
713
744
|
};
|
|
714
745
|
|
|
746
|
+
export declare function SevenThreeSplitContentLayout({ leftContent, rightContent, containerProps, leftProps, rightProps, }: SevenThreeSplitContentLayoutProps): JSX_2.Element;
|
|
747
|
+
|
|
748
|
+
declare type SevenThreeSplitContentLayoutProps = {
|
|
749
|
+
leftContent: React.ReactNode;
|
|
750
|
+
rightContent: React.ReactNode;
|
|
751
|
+
containerProps?: GridProps_2;
|
|
752
|
+
leftProps?: GridProps_2;
|
|
753
|
+
rightProps?: GridProps_2;
|
|
754
|
+
};
|
|
755
|
+
|
|
715
756
|
declare type SkeletonGridType = {
|
|
716
757
|
skeletonRows: number;
|
|
717
758
|
skeletonColumns: number;
|
|
@@ -719,15 +760,24 @@ declare type SkeletonGridType = {
|
|
|
719
760
|
|
|
720
761
|
export declare function SnackbarActionButton({ closeSnackbar, label, ...buttonProps }: InkSnackbarActionButtonProps): JSX_2.Element;
|
|
721
762
|
|
|
763
|
+
export declare function TenColumnFullContentLayout({ children, itemProps, containerProps, }: TenColumnFullContentLayoutProps): JSX_2.Element;
|
|
764
|
+
|
|
765
|
+
declare type TenColumnFullContentLayoutProps = {
|
|
766
|
+
children: React.ReactNode;
|
|
767
|
+
containerProps?: GridProps_2;
|
|
768
|
+
itemProps?: GridProps_2;
|
|
769
|
+
};
|
|
770
|
+
|
|
722
771
|
export declare function useCopyToClipboard(): [CopiedValue, CopyFn];
|
|
723
772
|
|
|
724
773
|
declare type VariantType = 'page' | 'paper' | 'search' | 'data';
|
|
725
774
|
|
|
726
|
-
export declare function WorkflowLayout({ Header, children, sx, ...rest }: WorkflowLayoutProps): JSX_2.Element;
|
|
775
|
+
export declare function WorkflowLayout({ Header, children, sx, itemProps, ...rest }: WorkflowLayoutProps): JSX_2.Element;
|
|
727
776
|
|
|
728
777
|
declare type WorkflowLayoutProps = GridProps & {
|
|
729
778
|
Header: JSX.Element;
|
|
730
779
|
children: React.ReactNode;
|
|
780
|
+
itemProps?: GridProps;
|
|
731
781
|
};
|
|
732
782
|
|
|
733
783
|
export { }
|