@movable/ui 2.13.0 → 2.13.2
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 +95 -2
- package/lib/index.mjs +2464 -2250
- package/lib/index.mjs.map +1 -1
- package/lib/layouts/DetailsLayout.d.ts +1 -1
- package/lib/layouts/IndexLayout.d.ts +1 -1
- package/package.json +1 -1
- package/lib/layouts/mocks/MockDetailsBody.d.ts +0 -1
- package/lib/layouts/mocks/MockIndexBody.d.ts +0 -1
- package/lib/layouts/mocks/MockInkPageHeader.d.ts +0 -4
- package/lib/layouts/mocks/MockWorkflowBody.d.ts +0 -1
- package/lib/layouts/mocks/MockWorkflowHeader.d.ts +0 -1
- package/lib/layouts/mocks/index.d.ts +0 -5
|
@@ -3,5 +3,5 @@ type LayoutDetailsProps = GridProps & {
|
|
|
3
3
|
Header: JSX.Element;
|
|
4
4
|
children: React.ReactNode;
|
|
5
5
|
};
|
|
6
|
-
export default function DetailsLayout({ Header, children, ...rest }: LayoutDetailsProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default function DetailsLayout({ Header, children, sx, ...rest }: LayoutDetailsProps): import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -3,5 +3,5 @@ type IndexLayoutProps = GridProps & {
|
|
|
3
3
|
Header: JSX.Element;
|
|
4
4
|
children: React.ReactNode;
|
|
5
5
|
};
|
|
6
|
-
export default function IndexLayout({ Header, children, ...containerProps }: IndexLayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default function IndexLayout({ Header, children, sx, ...containerProps }: IndexLayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export {};
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function MockDetailsBody(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function MockIndexBody(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function MockWorkflowBody(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function MockWorkflowHeader(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export { default as MockInkPageHeader, MockInkPageIndexHeader, } from './MockInkPageHeader';
|
|
2
|
-
export { default as MockDetailBody } from './MockDetailsBody';
|
|
3
|
-
export { default as MockIndexBody } from './MockIndexBody';
|
|
4
|
-
export { default as MockWorkflowHeader } from './MockWorkflowHeader';
|
|
5
|
-
export { default as MockWorkflowBody } from './MockWorkflowBody';
|