@mx-cartographer/insights-ui 1.8.1 → 1.8.3
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.
- package/dist/components/insights/WeeklyNoSpendDays/BubbleWeek.d.ts +9 -0
- package/dist/components/insights/WeeklyNoSpendDays/NoSpendIcons.d.ts +1 -0
- package/dist/components/insights/WeeklyNoSpendDays/WeeklyNoSpendDays.d.ts +12 -0
- package/dist/components/insights/WeeklyNoSpendDays/_tests_/WeeklyNoSpendDays.test.d.ts +0 -0
- package/dist/components/insights/WeeklyNoSpendDays/index.d.ts +1 -0
- package/dist/components/insights/index.d.ts +1 -0
- package/dist/index.es.js +959 -887
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -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>;
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './WeeklyNoSpendDays';
|