@movable/ui 3.10.3 → 3.11.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/components/InkEmptyState/InkEmptyState.d.ts +3 -2
- package/lib/index.d.ts +2 -1
- package/lib/index.mjs +2067 -2062
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -6,13 +6,14 @@ type ActionType = {
|
|
|
6
6
|
title: string;
|
|
7
7
|
onClick: () => void;
|
|
8
8
|
};
|
|
9
|
-
type InkEmptyStateProps = {
|
|
9
|
+
export type InkEmptyStateProps = {
|
|
10
10
|
title?: string;
|
|
11
11
|
description?: ReactNode;
|
|
12
12
|
action?: ActionType;
|
|
13
13
|
variant: VariantType;
|
|
14
14
|
icon?: JSX.Element | OverridableComponent<SvgIconTypeMap<object, 'svg'>>;
|
|
15
|
+
isLongLoading?: boolean;
|
|
15
16
|
sx?: SxProps<Theme>;
|
|
16
17
|
};
|
|
17
|
-
export declare function InkEmptyState({ title, description, action, variant, icon, sx, }: InkEmptyStateProps): import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export declare function InkEmptyState({ title, description, action, variant, icon, isLongLoading, sx, }: InkEmptyStateProps): import("react/jsx-runtime").JSX.Element;
|
|
18
19
|
export {};
|
package/lib/index.d.ts
CHANGED
|
@@ -519,7 +519,7 @@ export declare function InkDrawer(props: PropsWithChildren<InkDrawerProps>): JSX
|
|
|
519
519
|
|
|
520
520
|
declare type InkDrawerProps = CollapsibleDrawerProps | PanelDrawerProps;
|
|
521
521
|
|
|
522
|
-
export declare function InkEmptyState({ title, description, action, variant, icon, sx, }: InkEmptyStateProps): JSX_2.Element;
|
|
522
|
+
export declare function InkEmptyState({ title, description, action, variant, icon, isLongLoading, sx, }: InkEmptyStateProps): JSX_2.Element;
|
|
523
523
|
|
|
524
524
|
declare type InkEmptyStateProps = {
|
|
525
525
|
title?: string;
|
|
@@ -527,6 +527,7 @@ declare type InkEmptyStateProps = {
|
|
|
527
527
|
action?: ActionType;
|
|
528
528
|
variant: VariantType;
|
|
529
529
|
icon?: JSX.Element | OverridableComponent<SvgIconTypeMap<object, 'svg'>>;
|
|
530
|
+
isLongLoading?: boolean;
|
|
530
531
|
sx?: SxProps<Theme_2>;
|
|
531
532
|
};
|
|
532
533
|
|