@muraldevkit/ui-toolkit 2.31.4 → 2.32.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.
@@ -0,0 +1,15 @@
1
+ /// <reference types="react" />
2
+ interface MrlEmptyProps {
3
+ graphic?: JSX.Element;
4
+ heading: string;
5
+ description: string;
6
+ action?: JSX.Element;
7
+ }
8
+ /**
9
+ * MrlEmpty for when there is no data to display for a single component.
10
+ *
11
+ * @param MrlEmptyProps props
12
+ * @returns MrlEmpty component
13
+ */
14
+ export declare const MrlEmpty: ({ graphic, description, action, heading }: MrlEmptyProps) => JSX.Element;
15
+ export {};
@@ -0,0 +1 @@
1
+ export * from './MrlEmpty';
@@ -0,0 +1,2 @@
1
+ export * from './default';
2
+ export * from './large';
@@ -0,0 +1,15 @@
1
+ /// <reference types="react" />
2
+ interface MrlEmptyLargeProps {
3
+ graphic?: JSX.Element;
4
+ heading: string;
5
+ description: string;
6
+ action?: JSX.Element;
7
+ }
8
+ /**
9
+ * MrlEmptyLarge for when there is no data to display for an entire page.
10
+ *
11
+ * @param MrlEmptyProps props
12
+ * @returns MrlEmptyLarge
13
+ */
14
+ export declare const MrlEmptyLarge: ({ graphic, heading, description, action }: MrlEmptyLargeProps) => JSX.Element;
15
+ export {};
@@ -0,0 +1 @@
1
+ export * from './MrlEmptyLarge';
@@ -20,3 +20,4 @@ export * from './tooltip';
20
20
  export * from './portal';
21
21
  export * from './navigation-sidebar';
22
22
  export * from './skeleton';
23
+ export * from './empty';