@movable/ui 3.8.0 → 3.8.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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { SxProps, Theme, SvgIconTypeMap } from '@mui/material';
|
|
2
|
+
import { ReactNode } from 'react';
|
|
2
3
|
import { OverridableComponent } from '@mui/material/OverridableComponent';
|
|
3
4
|
import { VariantType } from './VariantStyles';
|
|
4
5
|
type ActionType = {
|
|
@@ -7,7 +8,7 @@ type ActionType = {
|
|
|
7
8
|
};
|
|
8
9
|
type InkEmptyStateProps = {
|
|
9
10
|
title?: string;
|
|
10
|
-
description?:
|
|
11
|
+
description?: ReactNode;
|
|
11
12
|
action?: ActionType;
|
|
12
13
|
variant: VariantType;
|
|
13
14
|
icon?: JSX.Element | OverridableComponent<SvgIconTypeMap<object, 'svg'>>;
|
package/lib/index.d.ts
CHANGED
|
@@ -521,7 +521,7 @@ export declare function InkEmptyState({ title, description, action, variant, ico
|
|
|
521
521
|
|
|
522
522
|
declare type InkEmptyStateProps = {
|
|
523
523
|
title?: string;
|
|
524
|
-
description?:
|
|
524
|
+
description?: ReactNode;
|
|
525
525
|
action?: ActionType;
|
|
526
526
|
variant: VariantType;
|
|
527
527
|
icon?: JSX.Element | OverridableComponent<SvgIconTypeMap<object, 'svg'>>;
|