@mx-cartographer/insights-ui 1.6.2 → 1.7.0-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.
@@ -1,4 +1,5 @@
1
1
  interface DrawerProps {
2
+ closeButtonAriaText: string;
2
3
  footerTitle: string;
3
4
  headerText: string;
4
5
  isOpen: boolean;
@@ -9,7 +10,6 @@ interface DrawerProps {
9
10
  icon_name: string;
10
11
  title: string;
11
12
  }>;
12
- noButtonText: string;
13
13
  onClose: () => void;
14
14
  sendResponseAnalytics: (str: string) => void;
15
15
  upperDescription: string;
@@ -0,0 +1,10 @@
1
+ import { default as React } from 'react';
2
+ import { CommonBeatProps } from '../../../types/CommonBeat';
3
+ interface UnifiedDepositProps extends CommonBeatProps {
4
+ category: string;
5
+ formattedNumber: string;
6
+ hasData: boolean;
7
+ isZeroState: boolean;
8
+ }
9
+ export declare const UnifiedDeposit: React.FC<UnifiedDepositProps>;
10
+ export {};
@@ -0,0 +1,11 @@
1
+ import { default as React } from 'react';
2
+ import { Beat } from '../../../types/CommonBeat';
3
+ interface UnifiedDepositBodyProps {
4
+ beat: Beat;
5
+ category: string;
6
+ formattedNumber: string;
7
+ institutionName: string;
8
+ isMini: boolean;
9
+ }
10
+ export declare const UnifiedDepositBody: React.FC<UnifiedDepositBodyProps>;
11
+ export {};
@@ -0,0 +1,2 @@
1
+ export * from './UnifiedDeposit';
2
+ export * from './UnifiedDepositBody';
@@ -3,3 +3,4 @@ export * from './FederalBankHoliday';
3
3
  export * from './MonthlyEmergencyFundReview';
4
4
  export * from './SetUpDirectDeposit';
5
5
  export * from './SwitchDirectDeposit';
6
+ export * from './UnifiedDeposit';
@@ -1,2 +1,2 @@
1
1
  import { BarChartProps } from '../../../../types/Charts/BarChart';
2
- export declare const BarChart: ({ amounts, color, data, legendLabelAvg, legendLabelMain, selectedTabIndex, onBarClick, }: BarChartProps) => import("react/jsx-runtime").JSX.Element;
2
+ export declare const BarChart: ({ amounts, color, data, margin, legendLabelAvg, legendLabelMain, selectedTabIndex, onBarClick, }: BarChartProps) => import("react/jsx-runtime").JSX.Element;