@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.
- package/lib/index.d.ts +18 -0
- package/lib/index.mjs +231 -214
- package/lib/index.mjs.map +1 -1
- package/lib/layouts/content-layouts/FourEightSplitContentLayout.d.ts +10 -0
- package/lib/layouts/content-layouts/TwelveColumnFullContentLayout.d.ts +8 -0
- package/lib/layouts/content-layouts/index.d.ts +2 -0
- package/package.json +7 -1
package/lib/index.d.ts
CHANGED
|
@@ -217,6 +217,16 @@ declare type FiveThreeSplitContentLayoutProps = {
|
|
|
217
217
|
|
|
218
218
|
export declare const FormSkeletonGrid: ({ skeletonRows, skeletonColumns, }: SkeletonGridType) => JSX_2.Element;
|
|
219
219
|
|
|
220
|
+
export declare function FourEightSplitContentLayout({ leftContent, rightContent, containerProps, leftProps, rightProps, }: FourEightSplitContentLayoutProps): JSX_2.Element;
|
|
221
|
+
|
|
222
|
+
declare type FourEightSplitContentLayoutProps = {
|
|
223
|
+
leftContent: React.ReactNode;
|
|
224
|
+
rightContent: React.ReactNode;
|
|
225
|
+
containerProps?: Grid2Props_2;
|
|
226
|
+
leftProps?: Grid2Props_2;
|
|
227
|
+
rightProps?: Grid2Props_2;
|
|
228
|
+
};
|
|
229
|
+
|
|
220
230
|
export declare function FullContentLayout({ children, itemProps, containerProps, }: FullContentLayoutProps): JSX_2.Element;
|
|
221
231
|
|
|
222
232
|
export declare const FullContentLayoutPageObject: FullContentLayoutPageObject_2;
|
|
@@ -1051,6 +1061,14 @@ declare type TenColumnFullContentLayoutProps = {
|
|
|
1051
1061
|
itemProps?: Grid2Props;
|
|
1052
1062
|
};
|
|
1053
1063
|
|
|
1064
|
+
export declare function TwelveColumnFullContentLayout({ children, containerProps, itemProps, }: TwelveColumnFullContentLayoutProps): JSX_2.Element;
|
|
1065
|
+
|
|
1066
|
+
declare type TwelveColumnFullContentLayoutProps = {
|
|
1067
|
+
children: React.ReactNode;
|
|
1068
|
+
containerProps?: Grid2Props_2;
|
|
1069
|
+
itemProps?: Grid2Props_2;
|
|
1070
|
+
};
|
|
1071
|
+
|
|
1054
1072
|
export declare function useCopyToClipboard(): [CopiedValue, CopyFn];
|
|
1055
1073
|
|
|
1056
1074
|
declare type VariantType = 'page' | 'paper' | 'search' | 'data';
|