@movable/ui 2.1.0 → 2.2.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 +10 -0
- package/lib/index.mjs +5963 -3602
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -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';
|
|
@@ -199,6 +200,15 @@ export declare function InkFormSelect<TFieldValues extends FieldValues, TName ex
|
|
|
199
200
|
|
|
200
201
|
declare type InkFormSelectProps<TFieldValues extends FieldValues, TName extends FieldPath<TFieldValues>> = InkSelectProps & UseControllerProps<TFieldValues, TName>;
|
|
201
202
|
|
|
203
|
+
export declare function InkImage({ src, alt, sx, imageSx, fallbackText, ...rest }: InkImageProps): JSX_2.Element;
|
|
204
|
+
|
|
205
|
+
declare type InkImageProps = BoxProps_2 & {
|
|
206
|
+
src: string;
|
|
207
|
+
alt?: string;
|
|
208
|
+
imageSx?: BoxProps_2['sx'];
|
|
209
|
+
fallbackText?: string;
|
|
210
|
+
};
|
|
211
|
+
|
|
202
212
|
export declare function InkPageHeader({ Breadcrumbs, Subtitle, Metadata, Chips, ButtonGroup, Tabs, sx, }: InkPageHeaderProps): JSX_2.Element;
|
|
203
213
|
|
|
204
214
|
declare type InkPageHeaderProps = {
|