@mx-cartographer/insights-ui 1.15.0-alpha.mega9 → 1.16.0

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 { MonthlySavingsToIncomeComparisonProps } from './types';
2
+ export declare const MonthlySavingsToIncomeComparison: React.FC<MonthlySavingsToIncomeComparisonProps>;
@@ -0,0 +1 @@
1
+ export { MonthlySavingsToIncomeComparison } from './MonthlySavingsToIncomeComparison';
@@ -0,0 +1,4 @@
1
+ import { DoubleBarChartProps } from '../../../../types/Charts/BarChart';
2
+ import { CommonBeatProps } from '../../../../types/CommonBeat';
3
+ export interface MonthlySavingsToIncomeComparisonProps extends CommonBeatProps, DoubleBarChartProps {
4
+ }
@@ -0,0 +1,2 @@
1
+ import { StandardDepositProps } from './types';
2
+ export declare const StandardDeposit: React.FC<StandardDepositProps>;
@@ -0,0 +1 @@
1
+ export * from './StandardDeposit';
@@ -1,5 +1,5 @@
1
1
  import { CommonBeatProps } from '../../../../types/CommonBeat';
2
- export interface SharedDepositProps extends CommonBeatProps {
2
+ export interface StandardDepositProps extends CommonBeatProps {
3
3
  category: string;
4
4
  formattedAmount: string;
5
5
  transactionDescription: string;
@@ -1,10 +1,11 @@
1
1
  export * from './BillAmountNotStandard';
2
2
  export * from './CategorySpendingV2';
3
- export * from './SharedDeposit';
3
+ export * from './StandardDeposit';
4
4
  export * from './DiscoveredAccounts';
5
5
  export * from './FederalBankHoliday';
6
6
  export * from './MarketingHub';
7
7
  export * from './MonthlyEmergencyFundReview';
8
+ export * from './MonthlySavingsToIncomeComparison';
8
9
  export * from './MonthlySpendingComparisonV2';
9
10
  export * from './MonthlySpendToIncomeComparisonV2';
10
11
  export * from './P2pCategorization';