@movable/ui 2.4.2 → 2.5.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 +7 -0
- package/lib/index.mjs +2390 -2377
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -427,6 +427,13 @@ export declare function SnackbarActionButton({ closeSnackbar, label, ...buttonPr
|
|
|
427
427
|
|
|
428
428
|
declare type VariantType = 'page' | 'paper' | 'search' | 'data';
|
|
429
429
|
|
|
430
|
+
export declare function WorkflowLayout({ Header, children, sx, ...rest }: WorkflowLayoutProps): JSX_2.Element;
|
|
431
|
+
|
|
432
|
+
declare type WorkflowLayoutProps = GridProps & {
|
|
433
|
+
Header: JSX.Element;
|
|
434
|
+
children: React.ReactNode;
|
|
435
|
+
};
|
|
436
|
+
|
|
430
437
|
export { }
|
|
431
438
|
|
|
432
439
|
|