@movable/ui 2.1.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 +17 -0
- package/lib/index.mjs +5974 -3602
- package/lib/index.mjs.map +1 -1
- package/package.json +2 -1
package/lib/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AlertProps } from '@mui/material/Alert';
|
|
2
2
|
import { BoxProps } from '@mui/material';
|
|
3
|
+
import { BoxProps as BoxProps_2 } from '@mui/material/Box';
|
|
3
4
|
import { ButtonProps } from '@mui/material';
|
|
4
5
|
import { ButtonProps as ButtonProps_2 } from '@mui/material/Button';
|
|
5
6
|
import { ChipProps } from '@mui/material';
|
|
@@ -120,6 +121,13 @@ declare type IFilterDrawer = DrawerProps & {
|
|
|
120
121
|
mainProps?: BoxProps;
|
|
121
122
|
};
|
|
122
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
|
+
|
|
123
131
|
export declare function InkAttributeList({ label, attributes, ...listProps }: InkAttributeListProps): JSX_2.Element;
|
|
124
132
|
|
|
125
133
|
declare type InkAttributeListProps = ListProps & {
|
|
@@ -199,6 +207,15 @@ export declare function InkFormSelect<TFieldValues extends FieldValues, TName ex
|
|
|
199
207
|
|
|
200
208
|
declare type InkFormSelectProps<TFieldValues extends FieldValues, TName extends FieldPath<TFieldValues>> = InkSelectProps & UseControllerProps<TFieldValues, TName>;
|
|
201
209
|
|
|
210
|
+
export declare function InkImage({ src, alt, sx, imageSx, fallbackText, ...rest }: InkImageProps): JSX_2.Element;
|
|
211
|
+
|
|
212
|
+
declare type InkImageProps = BoxProps_2 & {
|
|
213
|
+
src: string;
|
|
214
|
+
alt?: string;
|
|
215
|
+
imageSx?: BoxProps_2['sx'];
|
|
216
|
+
fallbackText?: string;
|
|
217
|
+
};
|
|
218
|
+
|
|
202
219
|
export declare function InkPageHeader({ Breadcrumbs, Subtitle, Metadata, Chips, ButtonGroup, Tabs, sx, }: InkPageHeaderProps): JSX_2.Element;
|
|
203
220
|
|
|
204
221
|
declare type InkPageHeaderProps = {
|