@mx-cartographer/experiences 7.13.11 → 7.13.13
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 +8 -0
- package/dist/{AccountStore-BNlTuxWN.mjs → AccountStore-DpYvNnql.mjs} +1 -1
- package/dist/{TransactionStore-DP5vipL2.mjs → TransactionStore-rpqhGX8m.mjs} +1 -1
- package/dist/accounts/index.es.js +1 -1
- package/dist/common/index.es.js +4 -3
- package/dist/transactions/index.es.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [7.13.13] - 03-30-2026
|
|
2
|
+
|
|
3
|
+
- **FIXED** - use detailed transactions for sortedTransactionsWithSplit
|
|
4
|
+
|
|
5
|
+
## [7.13.12] - 03-30-2026
|
|
6
|
+
|
|
7
|
+
- **UPDATED** - Call `refresh_all` endpoint for member foreground aggregation
|
|
8
|
+
|
|
1
9
|
## [7.13.11] - 03-30-2026
|
|
2
10
|
|
|
3
11
|
- **FIXED** - ADA text color contrast fixes
|
|
@@ -204,7 +204,7 @@ class E {
|
|
|
204
204
|
};
|
|
205
205
|
refreshMembers = async () => {
|
|
206
206
|
try {
|
|
207
|
-
await this.api.refreshAllMembers()
|
|
207
|
+
await this.api.refreshAllMembers();
|
|
208
208
|
} catch (t) {
|
|
209
209
|
console.error(`Error occurredwhile refreshing members: ${t}`);
|
|
210
210
|
}
|
|
@@ -523,7 +523,7 @@ class yt {
|
|
|
523
523
|
);
|
|
524
524
|
}
|
|
525
525
|
get sortedTransactionsWithSplits() {
|
|
526
|
-
return F(this.sortedTransactions, this.
|
|
526
|
+
return F(this.sortedTransactions, this.detailedTransactions);
|
|
527
527
|
}
|
|
528
528
|
setAssociatedBeats = (t) => {
|
|
529
529
|
this.associatedBeats = t, this.associatedBeatsLoading = !1, this.associatedBeatsLoaded = !0;
|
|
@@ -66,7 +66,7 @@ import { L as o1 } from "../Loader-D3rjKx72.mjs";
|
|
|
66
66
|
import { W as r3 } from "../WidgetContainer-B7xDq2bM.mjs";
|
|
67
67
|
import { M as v1 } from "../MiniWidgetContainer-xLWSV6Wz.mjs";
|
|
68
68
|
import { A as l4 } from "../AccountApi-ChQr5PAZ.mjs";
|
|
69
|
-
import { A as d4 } from "../AccountStore-
|
|
69
|
+
import { A as d4 } from "../AccountStore-DpYvNnql.mjs";
|
|
70
70
|
const d3 = (t, o) => {
|
|
71
71
|
const n = _1.includes(o) ? w1(t) : [], i = L1.includes(o) ? R1(t) : [], c = f1.includes(o) ? S1(t) : [];
|
|
72
72
|
return [n, i, c].filter((l) => l.length > 0);
|
package/dist/common/index.es.js
CHANGED
|
@@ -20,8 +20,8 @@ import { C as is } from "../CurrencyInput-DuMktPu3.mjs";
|
|
|
20
20
|
import { L as us } from "../Loader-D3rjKx72.mjs";
|
|
21
21
|
import { R as hs } from "../ResponsiveButton-DZFp78fJ.mjs";
|
|
22
22
|
import { S as gs } from "../SearchBox-CwDgvWVJ.mjs";
|
|
23
|
-
import { T as Y } from "../TransactionStore-
|
|
24
|
-
import { S as _s } from "../TransactionStore-
|
|
23
|
+
import { T as Y } from "../TransactionStore-rpqhGX8m.mjs";
|
|
24
|
+
import { S as _s } from "../TransactionStore-rpqhGX8m.mjs";
|
|
25
25
|
import { T as ms } from "../TabContentContainer-j01JYR_7.mjs";
|
|
26
26
|
import { I as Ss } from "../IconBacking-B9oC6uL2.mjs";
|
|
27
27
|
import { D as ws, F as Cs, c as Ds, d as Es, R as As, S as xs } from "../RecurringTransactions-BOzBqfdg.mjs";
|
|
@@ -59,7 +59,7 @@ import { u as fo } from "../useScreenSize-B6JyS_Lj.mjs";
|
|
|
59
59
|
import { useRef as J, useEffect as tt } from "react";
|
|
60
60
|
import { u as yo } from "../useWidgetLoadTimer-DgN1bTyu.mjs";
|
|
61
61
|
import { makeAutoObservable as l, runInAction as h, reaction as L, autorun as et } from "mobx";
|
|
62
|
-
import { A as st } from "../AccountStore-
|
|
62
|
+
import { A as st } from "../AccountStore-DpYvNnql.mjs";
|
|
63
63
|
import rt from "posthog-js";
|
|
64
64
|
import { B as ot } from "../BeatStore-C6CAT-ce.mjs";
|
|
65
65
|
import { endOfMonth as O } from "date-fns/endOfMonth";
|
|
@@ -1035,6 +1035,7 @@ class Ee {
|
|
|
1035
1035
|
// Load copy, config and user data
|
|
1036
1036
|
this.copyStore.loadCopy(),
|
|
1037
1037
|
this.appDataStore.loadAppData(),
|
|
1038
|
+
this.accountStore.refreshMembers(),
|
|
1038
1039
|
this.userStore.loadUserFeatures()
|
|
1039
1040
|
]);
|
|
1040
1041
|
};
|
|
@@ -3,8 +3,8 @@ import { C as Me, D as Le, M as Re, a as He, T as Be } from "../TransactionDetai
|
|
|
3
3
|
import { B as Da, b as Ia } from "../TransactionDetails-B-C-7meW.mjs";
|
|
4
4
|
import { T as E } from "../Transaction-CqjlF6SO.mjs";
|
|
5
5
|
import { O as Na } from "../Transaction-CqjlF6SO.mjs";
|
|
6
|
-
import { S as Z, D as Pe } from "../TransactionStore-
|
|
7
|
-
import { T as ka } from "../TransactionStore-
|
|
6
|
+
import { S as Z, D as Pe } from "../TransactionStore-rpqhGX8m.mjs";
|
|
7
|
+
import { T as ka } from "../TransactionStore-rpqhGX8m.mjs";
|
|
8
8
|
import { u as R, T as $e } from "../StatusIndicator-CIKUOoN_.mjs";
|
|
9
9
|
import { a as Ma } from "../StatusIndicator-CIKUOoN_.mjs";
|
|
10
10
|
import { e as Ve } from "../exportTransactionsToCSV-CdTF_RqL.mjs";
|