@mx-cartographer/insights-ui 1.7.2 → 1.7.4-alpha.mega2

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,2 @@
1
+ import { CategorySpendingV2Props } from './types/CategorySpendingV2';
2
+ export declare const CategorySpendingV2: React.FC<CategorySpendingV2Props>;
@@ -0,0 +1 @@
1
+ export * from './CategorySpendingV2';
@@ -1,10 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  import { CommonBeatProps } from '../../../types/CommonBeat';
3
- interface UnifiedDepositProps extends CommonBeatProps {
3
+ export interface UnifiedDepositProps extends CommonBeatProps {
4
4
  category: string;
5
5
  formattedNumber: string;
6
- hasData: boolean;
7
- isZeroState: boolean;
8
6
  }
9
7
  export declare const UnifiedDeposit: React.FC<UnifiedDepositProps>;
10
- export {};
@@ -1,3 +1,4 @@
1
+ export * from './CategorySpendingV2';
1
2
  export * from './DiscoveredAccounts';
2
3
  export * from './FederalBankHoliday';
3
4
  export * from './MonthlyEmergencyFundReview';
@@ -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;
@@ -1,7 +1,9 @@
1
+ import { SxProps } from '@mui/material/styles';
1
2
  export interface LegendProps {
2
3
  average?: string;
3
4
  color: string;
4
5
  legendLabelAvg?: string;
5
6
  legendLabelMain?: string;
7
+ legendStyle?: SxProps;
6
8
  }
7
- export declare const Legend: ({ average, color, legendLabelAvg, legendLabelMain }: LegendProps) => import("react/jsx-runtime").JSX.Element;
9
+ export declare const Legend: ({ average, color, legendLabelAvg, legendLabelMain, legendStyle, }: LegendProps) => import("react/jsx-runtime").JSX.Element;
@@ -8,7 +8,8 @@ export interface CustomBarPlotProps {
8
8
  colorRange: string[];
9
9
  data: BarDataProps[];
10
10
  dataIndex: number;
11
+ selectedTabIndex: number;
11
12
  style: BarStyleProps;
12
13
  }
13
- export declare const CustomBarPlot: ({ colorRange, data, dataIndex, style, ...restProps }: CustomBarPlotProps) => import("react/jsx-runtime").JSX.Element;
14
+ export declare const CustomBarPlot: ({ colorRange, data, dataIndex, selectedTabIndex, style, ...restProps }: CustomBarPlotProps) => import("react/jsx-runtime").JSX.Element;
14
15
  export {};