magneto365.ui 2.58.0 → 2.59.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.
Files changed (24) hide show
  1. package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
  2. package/dist/cjs/index.js +334 -299
  3. package/dist/cjs/index.js.map +1 -1
  4. package/dist/cjs/types/components/UI/molecules/Notification/Notification.component.d.ts +4 -0
  5. package/dist/cjs/types/components/UI/molecules/Notification/Notification.interface.d.ts +35 -0
  6. package/dist/cjs/types/components/UI/molecules/Notification/index.d.ts +2 -0
  7. package/dist/cjs/types/components/UI/molecules/index.d.ts +1 -0
  8. package/dist/cjs/types/components/UI/organism/JobDetailsDrawer/JobDetailsDrawer.interface.d.ts +1 -1
  9. package/dist/cjs/types/components/UI/organism/MobileJobDetailsDrawer/MobileJobDetailsDrawer.interface.d.ts +1 -1
  10. package/dist/cjs/types/constants/stories/index.d.ts +1 -0
  11. package/dist/cjs/types/constants/stories/notification.constants.d.ts +2 -0
  12. package/dist/esm/css/magneto.ui.lib.min.css +1 -1
  13. package/dist/esm/index.js +334 -300
  14. package/dist/esm/index.js.map +1 -1
  15. package/dist/esm/types/components/UI/molecules/Notification/Notification.component.d.ts +4 -0
  16. package/dist/esm/types/components/UI/molecules/Notification/Notification.interface.d.ts +35 -0
  17. package/dist/esm/types/components/UI/molecules/Notification/index.d.ts +2 -0
  18. package/dist/esm/types/components/UI/molecules/index.d.ts +1 -0
  19. package/dist/esm/types/components/UI/organism/JobDetailsDrawer/JobDetailsDrawer.interface.d.ts +1 -1
  20. package/dist/esm/types/components/UI/organism/MobileJobDetailsDrawer/MobileJobDetailsDrawer.interface.d.ts +1 -1
  21. package/dist/esm/types/constants/stories/index.d.ts +1 -0
  22. package/dist/esm/types/constants/stories/notification.constants.d.ts +2 -0
  23. package/dist/index.d.ts +39 -3
  24. package/package.json +1 -1
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { INotification } from './Notification.interface';
3
+ declare const Notification: React.FC<INotification>;
4
+ export default Notification;
@@ -0,0 +1,35 @@
1
+ /// <reference types="react" />
2
+ /**
3
+ * Defines the position of the Notification component
4
+ */
5
+ declare type NotificationPosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
6
+ /**
7
+ * Interface for Notification component props
8
+ */
9
+ export interface INotification {
10
+ /**
11
+ * Callback function to close the notification
12
+ */
13
+ onClose: () => void;
14
+ /**
15
+ * Message to display in the notification
16
+ */
17
+ message?: React.ReactNode;
18
+ /**
19
+ * Position where the notification will appear
20
+ */
21
+ position?: NotificationPosition;
22
+ /**
23
+ * Custom class for styling the notification container
24
+ */
25
+ className?: string;
26
+ /**
27
+ * Duration in milliseconds before auto-closing the notification
28
+ */
29
+ autoCloseDuration?: number;
30
+ /**
31
+ * Extra content to display in the notification
32
+ */
33
+ extraContent?: React.ReactNode;
34
+ }
35
+ export {};
@@ -0,0 +1,2 @@
1
+ export * from './Notification.interface';
2
+ export { default as Notification } from './Notification.component';
@@ -72,3 +72,4 @@ export * from './UserMenuWrapperAnalyst';
72
72
  export * from './AlertJobStatus';
73
73
  export * from './SimilarCard';
74
74
  export * from './MegaMenuDrawerItem';
75
+ export * from './Notification';
@@ -78,7 +78,7 @@ export interface IJobDetailsDrawer {
78
78
  /**
79
79
  * Props for the fraud card job.
80
80
  */
81
- fraudCardJobProps: IFraudCardJob;
81
+ fraudCardJobProps?: IFraudCardJob;
82
82
  /**
83
83
  * Props for show actions buttons or alert
84
84
  */
@@ -87,7 +87,7 @@ export interface IMobileJobDetailsDrawer {
87
87
  /**
88
88
  * Props for the fraud card job.
89
89
  */
90
- fraudCardJobProps: IFraudCardJob;
90
+ fraudCardJobProps?: IFraudCardJob;
91
91
  /**
92
92
  * Props for show actions buttons or alert
93
93
  */
@@ -22,3 +22,4 @@ export * from './megaMenu.constants';
22
22
  export * from './alertJob.constants';
23
23
  export * from './similarCard.constants';
24
24
  export * from './jobSuggestedDrawer.constants';
25
+ export * from './notification.constants';
@@ -0,0 +1,2 @@
1
+ import { INotification } from '@components/UI/molecules/Notification';
2
+ export declare const notification: INotification;