magneto365.ui 2.59.1 → 2.59.2

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,4 @@
1
+ import React from 'react';
2
+ import { IMegaMenuEmpty } from './MegaMenuEmpty.interface';
3
+ declare const MegaMenuEmpty: React.FC<IMegaMenuEmpty>;
4
+ export default MegaMenuEmpty;
@@ -0,0 +1,10 @@
1
+ export interface IMegaMenuEmpty {
2
+ /**
3
+ * Empty Title
4
+ */
5
+ title: string;
6
+ /**
7
+ * Empty Subtitle
8
+ */
9
+ subtitle: string;
10
+ }
@@ -0,0 +1,2 @@
1
+ export * from './MegaMenuEmpty.interface';
2
+ export { default as MegaMenuEmpty } from './MegaMenuEmpty.component';
@@ -72,4 +72,5 @@ export * from './UserMenuWrapperAnalyst';
72
72
  export * from './AlertJobStatus';
73
73
  export * from './SimilarCard';
74
74
  export * from './MegaMenuDrawerItem';
75
+ export * from './MegaMenuEmpty';
75
76
  export * from './Notification';
@@ -4,6 +4,7 @@ import { ReactNode } from 'react';
4
4
  export interface IMegaMenuLink {
5
5
  label: string;
6
6
  url: string;
7
+ target?: string;
7
8
  icon?: string | undefined;
8
9
  }
9
10
  export interface IMegaMenuAction {
@@ -1,2 +1,3 @@
1
1
  export { default as SwipeLeft } from '../assets/gif/SwipeLeft.gif';
2
2
  export { default as SwipeRight } from '../assets/gif/SwipeRight.gif';
3
+ export { default as NoData } from '../assets/gif/noData.gif';