@mx-cartographer/experiences 6.2.8-alpha.mm1 → 6.2.8

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.
@@ -1,10 +1,12 @@
1
1
  import { Notification } from '../../common';
2
+ import { Types } from '../../settings/components/notifications/NotificationSettings';
2
3
  interface NotificationDrawerProps {
4
+ notificationTypes?: Types[];
3
5
  isOpen: boolean;
4
6
  onClose: () => void;
5
7
  onNotificationClick?: (notification: Notification) => void;
6
8
  }
7
- export declare const NotificationDrawer: (({ isOpen, onClose, onNotificationClick }: NotificationDrawerProps) => import("react/jsx-runtime").JSX.Element) & {
9
+ export declare const NotificationDrawer: (({ notificationTypes, isOpen, onClose, onNotificationClick }: NotificationDrawerProps) => import("react/jsx-runtime").JSX.Element) & {
8
10
  displayName: string;
9
11
  };
10
12
  export {};
@@ -1,3 +1,12 @@
1
- export declare const NotificationSettings: (() => import("react/jsx-runtime").JSX.Element) & {
2
- displayName: string;
3
- };
1
+ import { default as React } from 'react';
2
+ export declare enum Types {
3
+ Accounts = "accounts",
4
+ Budgets = "budgets",
5
+ Insights = "insights",
6
+ Delivery = "delivery"
7
+ }
8
+ interface NotificationSettingsProps {
9
+ notificationTypes?: Types[];
10
+ }
11
+ export declare const NotificationSettings: React.FC<NotificationSettingsProps>;
12
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "6.2.8-alpha.mm1",
3
+ "version": "6.2.8",
4
4
  "description": "Library containing experience widgets",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",