@mx-cartographer/insights-ui 1.8.1-alpha.mega2 → 1.8.3-alpha.sabari1

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,9 @@
1
+ import { default as React } from 'react';
2
+ interface BubbleWeekProps {
3
+ noSpendDays: {
4
+ [key in string]?: string;
5
+ };
6
+ daysOfTheWeek: string[];
7
+ }
8
+ export declare const BubbleWeek: React.FC<BubbleWeekProps>;
9
+ export {};
@@ -0,0 +1 @@
1
+ export declare const Wallet: any[];
@@ -0,0 +1,12 @@
1
+ import { default as React } from 'react';
2
+ import { CommonBeatProps } from '../../../types/CommonBeat';
3
+ export interface WeeklyNoSpendDaysProps extends CommonBeatProps {
4
+ displayData: {
5
+ noSpendDays: {
6
+ [key in string]?: string;
7
+ };
8
+ daysOfTheWeek: string[];
9
+ dollarBillAltText: string;
10
+ };
11
+ }
12
+ export declare const WeeklyNoSpendDays: React.FC<WeeklyNoSpendDaysProps>;
@@ -0,0 +1 @@
1
+ export * from './WeeklyNoSpendDays';
@@ -6,4 +6,5 @@ export * from './SetUpDirectDeposit';
6
6
  export * from './SwitchDirectDeposit';
7
7
  export * from './MonthlySpendingComparisonV2';
8
8
  export * from './UnifiedDeposit';
9
+ export * from './WeeklyNoSpendDays';
9
10
  export * from './BillAmountNotStandard';