@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
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
|
+
## [6.12.0] - 07-02-2025
|
|
2
|
+
|
|
3
|
+
- **ADDED** - RecurringTransactions Micro Widget.
|
|
4
|
+
|
|
5
|
+
## [6.11.0] - 07-01-2025
|
|
6
|
+
|
|
7
|
+
- **Fixed** - `RecurringTransactions.test.ts` fixed the failing test cases
|
|
8
|
+
|
|
1
9
|
## [6.10.4] - 06-29-2025
|
|
2
10
|
|
|
3
|
-
- **
|
|
11
|
+
- **UPDATED** - `MicroWidgetContainer` style adjustments for responsiveness and truncation logic
|
|
4
12
|
|
|
5
13
|
## [6.10.3] - 06-27-2025
|
|
6
14
|
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
1
|
import { BubbleData } from '../BubbleChart';
|
|
3
2
|
interface MercuryProps {
|
|
4
3
|
bubble: BubbleData;
|
|
5
4
|
}
|
|
6
|
-
declare
|
|
7
|
-
export
|
|
5
|
+
export declare function Mercury({ bubble }: MercuryProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export {};
|
|
@@ -32,28 +32,11 @@ export declare const getScale: (min: number, max: number) => d3.ScaleLinear<numb
|
|
|
32
32
|
*/
|
|
33
33
|
export declare const simulate: (budgets: DetailedBudget[]) => d3.Simulation<BubbleData, undefined>;
|
|
34
34
|
export declare const getSmartScale: (count: number, height: number, maxValue: number, minValue: number, width: number) => d3.ScaleLinear<number, number, never>;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
category_guid: string;
|
|
44
|
-
end_date?: number;
|
|
45
|
-
flags?: string[];
|
|
46
|
-
guid: string;
|
|
47
|
-
parent_guid?: string;
|
|
48
|
-
revision: number;
|
|
49
|
-
start_date: number;
|
|
50
|
-
transaction_total: number;
|
|
51
|
-
user_guid: string;
|
|
52
|
-
index?: number | undefined;
|
|
53
|
-
x?: number | undefined;
|
|
54
|
-
y?: number | undefined;
|
|
55
|
-
vx?: number | undefined;
|
|
56
|
-
vy?: number | undefined;
|
|
57
|
-
fx?: number | null | undefined;
|
|
58
|
-
fy?: number | null | undefined;
|
|
59
|
-
}[];
|
|
35
|
+
/**
|
|
36
|
+
* Simulate a compact layout for smaller viewports
|
|
37
|
+
* @param budgets Budget data
|
|
38
|
+
* @param height Height of the container
|
|
39
|
+
* @param width Width of the container
|
|
40
|
+
* @returns A D3 simulation for the compact layout
|
|
41
|
+
*/
|
|
42
|
+
export declare const simulateCompact: (budgets: DetailedBudget[], height: number, width: number) => d3.Simulation<BubbleData, undefined>;
|
|
@@ -64,6 +64,7 @@ export declare const ANALYTICS_EVENTS: {
|
|
|
64
64
|
RECURRING_TRANSACTIONS_CLICK_UPCOMING: string;
|
|
65
65
|
RECURRING_TRANSACTIONS_DETAILS_CLICK_DELETE: string;
|
|
66
66
|
RECURRING_TRANSACTIONS_DETAILS_CLICK_PAYMENT_SCHEDULE: string;
|
|
67
|
+
RECURRING_TRANSACTIONS_MICRO_WIDGET_CTA: string;
|
|
67
68
|
SPENDING_CLICK_FILTER: string;
|
|
68
69
|
SPENDING_VIEW: string;
|
|
69
70
|
TRANSACTIONS_ADD_MANUAL_ACCOUNT_MODAL: string;
|