hplx-react-elements-dev 1.1.44 → 1.1.46

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
+ /// <reference types="react" />
2
+ import { NotificationProps } from "../types";
3
+ declare const Notification: (props: NotificationProps) => JSX.Element;
4
+ export default Notification;
@@ -488,4 +488,11 @@ export interface AlertProps {
488
488
  showCloseIcon?: boolean;
489
489
  fullWidth?: boolean;
490
490
  }
491
+ export interface NotificationProps {
492
+ icon?: string;
493
+ showCloseIcon?: boolean;
494
+ className?: string;
495
+ children?: ReactNode;
496
+ handleCloseClick?: () => void;
497
+ }
491
498
  export {};
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "frontend",
10
10
  "healthplix"
11
11
  ],
12
- "version": "1.1.44",
12
+ "version": "1.1.46",
13
13
  "main": "dist/esm/index.js",
14
14
  "module": "dist/esm/index.js",
15
15
  "types": "dist/esm/index.d.ts",