@mx-cartographer/experiences 6.10.4-alpha.mega2 → 6.11.0-alpha.san1
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/CHANGELOG.md +9 -1
- package/dist/budgets/components/bubblechart/Mercury.d.ts +2 -3
- package/dist/budgets/utils/BubblesSVG.d.ts +8 -25
- package/dist/common/constants/Analytics.d.ts +1 -0
- package/dist/common/types/localization/RecurringCopy.d.ts +1 -0
- package/dist/index.es.js +2908 -2738
- package/dist/index.es.js.map +1 -1
- package/dist/recurringtransactions/RecurringTransactionsMicroWidget.d.ts +7 -0
- package/dist/recurringtransactions/components/shared/MerchantLogosRow.d.ts +8 -0
- package/dist/recurringtransactions/components/shared/OverlappingMerchantLogos.d.ts +9 -0
- package/dist/recurringtransactions/components/shared/RecurrenceLegend.d.ts +9 -0
- package/dist/recurringtransactions/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
interface RecurringTransactionsMicroWidgetProps {
|
|
2
|
+
onCTAClick: () => void;
|
|
3
|
+
}
|
|
4
|
+
export declare const RecurringTransactionsMicroWidget: (({ onCTAClick }: RecurringTransactionsMicroWidgetProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Recurrence } from '../../../common';
|
|
3
|
+
interface MerchantLogosRowProps {
|
|
4
|
+
upcomingRecurrences: Recurrence[];
|
|
5
|
+
maxLogos?: number;
|
|
6
|
+
}
|
|
7
|
+
export declare const MerchantLogosRow: React.FC<MerchantLogosRowProps>;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Recurrence } from '../../../common';
|
|
3
|
+
interface OverlappingMerchantLogosProps {
|
|
4
|
+
upcomingRecurrences: Recurrence[];
|
|
5
|
+
logoSize?: number;
|
|
6
|
+
maxLogos?: number;
|
|
7
|
+
}
|
|
8
|
+
export declare const OverlappingMerchantLogos: React.FC<OverlappingMerchantLogosProps>;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type RecurringSettingsProps = {
|
|
2
|
+
amount: number;
|
|
3
|
+
bgcolor: string;
|
|
4
|
+
isLargeScreen: boolean;
|
|
5
|
+
isSmallScreen: boolean;
|
|
6
|
+
label: string;
|
|
7
|
+
};
|
|
8
|
+
export declare const RecurrenceLegend: ({ amount, bgcolor, isLargeScreen, isSmallScreen, label, }: RecurringSettingsProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { RecurringTransactionsWidget } from './RecurringTransactionsWidget';
|
|
2
2
|
export { RecurringTransactionsMiniWidget } from './RecurringTransactionsMiniWidget';
|
|
3
|
+
export { RecurringTransactionsMicroWidget } from './RecurringTransactionsMicroWidget';
|
|
3
4
|
export { RecurringTransactionsStore } from './stores/RecurringTransactionsStore';
|
|
4
5
|
export { RecurringSettings } from './components/shared/RecurringSettings';
|
|
5
6
|
export { ManageIncome } from './components/shared/recurringsettings/ManageIncome';
|