@mx-cartographer/experiences 6.3.2 → 6.3.4-alpha.mega1

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.
@@ -2,14 +2,17 @@ import { Holding, GlobalStore } from '../../common';
2
2
  import { HoldingApi } from '../api/HoldingApi';
3
3
  import { AnalysisType } from '../constants';
4
4
  export declare class HoldingStore {
5
- analysisChartData: string[][];
6
- analysisDetails: Record<string, number>;
7
5
  analysisType: AnalysisType;
8
6
  api: HoldingApi;
9
7
  holdings: Holding[];
10
8
  holdingsLoaded: boolean;
11
9
  globalStore: GlobalStore;
12
10
  constructor(globalStore: GlobalStore);
11
+ get analysisChartData(): string[][];
12
+ get analysisDetails(): {
13
+ [x: string]: number;
14
+ };
15
+ get visibleHoldings(): Holding[];
13
16
  loadHoldings: () => Promise<void>;
14
17
  setAnalysisType: (analysisType: AnalysisType) => void;
15
18
  updateHoldings: (holding: Holding) => Promise<void>;
@@ -2,6 +2,7 @@ import { default as React } from 'react';
2
2
  import { Notification } from '../../common';
3
3
  export interface NotificationListProps {
4
4
  onClick?: (notification: Notification) => void;
5
+ onManageNotifications: () => void;
5
6
  }
6
7
  declare const _default: React.FunctionComponent<NotificationListProps>;
7
8
  export default _default;
@@ -0,0 +1,7 @@
1
+ interface NotificationEmptyStateProps {
2
+ onManageNotifications: () => void;
3
+ }
4
+ export declare const NotificationEmptyState: (({ onManageNotifications }: NotificationEmptyStateProps) => import("react/jsx-runtime").JSX.Element) & {
5
+ displayName: string;
6
+ };
7
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "6.3.2",
3
+ "version": "6.3.4-alpha.mega1",
4
4
  "description": "Library containing experience widgets",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",