@movable/ui 2.2.0 → 2.3.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 +7 -0
- package/lib/index.mjs +455 -444
- package/lib/index.mjs.map +1 -1
- package/package.json +2 -1
package/lib/index.d.ts
CHANGED
|
@@ -121,6 +121,13 @@ declare type IFilterDrawer = DrawerProps & {
|
|
|
121
121
|
mainProps?: BoxProps;
|
|
122
122
|
};
|
|
123
123
|
|
|
124
|
+
export declare function IndexLayout({ Header, children, ...containerProps }: IndexLayoutProps): JSX_2.Element;
|
|
125
|
+
|
|
126
|
+
declare type IndexLayoutProps = GridProps & {
|
|
127
|
+
Header: JSX.Element;
|
|
128
|
+
children: React.ReactNode;
|
|
129
|
+
};
|
|
130
|
+
|
|
124
131
|
export declare function InkAttributeList({ label, attributes, ...listProps }: InkAttributeListProps): JSX_2.Element;
|
|
125
132
|
|
|
126
133
|
declare type InkAttributeListProps = ListProps & {
|