@mx-cartographer/experiences 9.1.3-alpha.al0 → 9.1.3-alpha.mm0
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 +6 -0
- package/dist/{UserStore-BjnNCO5a.mjs → UserStore-E5WvBXaY.mjs} +35 -11
- package/dist/{UserStore-BjnNCO5a.mjs.map → UserStore-E5WvBXaY.mjs.map} +1 -1
- package/dist/common/index.es.js +1 -1
- package/dist/core/index.es.js +1 -1
- package/dist/dashboard/index.es.js +71 -93
- package/dist/dashboard/index.es.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [9.1.3] - 07-03-2026
|
|
2
|
+
|
|
3
|
+
- **FIXED** - Spending drawer intermittently showed an empty transaction list for months outside the cached transaction window
|
|
4
|
+
- **FIXED** - Transaction list stayed empty until hard refresh when any data load failed, because in-flight flags never reset, blocking retries
|
|
5
|
+
- **FIXED** - A failed date-range expansion no longer wipes the already-loaded transactions from the list
|
|
6
|
+
|
|
1
7
|
## [9.1.2] - 07-02-2026
|
|
2
8
|
|
|
3
9
|
- **FIXED** - Net Worth timeframe analytics event (`netWorth_click_timePeriod`) fired on every dashboard load/refresh instead of only on user timeframe selection
|
|
@@ -2807,6 +2807,10 @@ class Ue {
|
|
|
2807
2807
|
this.setAssociatedBeats(s);
|
|
2808
2808
|
} catch (s) {
|
|
2809
2809
|
console.error(`Error occurred while loading associated beats: ${s}`);
|
|
2810
|
+
} finally {
|
|
2811
|
+
c(() => {
|
|
2812
|
+
this.associatedBeatsLoading = !1;
|
|
2813
|
+
});
|
|
2810
2814
|
}
|
|
2811
2815
|
};
|
|
2812
2816
|
loadTags = async () => {
|
|
@@ -2817,6 +2821,10 @@ class Ue {
|
|
|
2817
2821
|
this.setTags(t);
|
|
2818
2822
|
} catch (t) {
|
|
2819
2823
|
console.error(`Error occurred while loading tags: ${t}`);
|
|
2824
|
+
} finally {
|
|
2825
|
+
c(() => {
|
|
2826
|
+
this.tagsLoading = !1;
|
|
2827
|
+
});
|
|
2820
2828
|
}
|
|
2821
2829
|
}
|
|
2822
2830
|
};
|
|
@@ -2828,28 +2836,46 @@ class Ue {
|
|
|
2828
2836
|
this.setTaggings(t);
|
|
2829
2837
|
} catch (t) {
|
|
2830
2838
|
console.error(`Error occurred while loading taggings: ${t}`);
|
|
2839
|
+
} finally {
|
|
2840
|
+
c(() => {
|
|
2841
|
+
this.taggingsLoading = !1;
|
|
2842
|
+
});
|
|
2831
2843
|
}
|
|
2832
2844
|
}
|
|
2833
2845
|
};
|
|
2834
2846
|
loadTransactionRules = async () => {
|
|
2835
|
-
if (this.transactionRulesLoading)
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2847
|
+
if (!this.transactionRulesLoading) {
|
|
2848
|
+
this.transactionRulesLoading = !0;
|
|
2849
|
+
try {
|
|
2850
|
+
const t = await this.api.getTransactionRules();
|
|
2851
|
+
this.setTransactionRules(t);
|
|
2852
|
+
} catch (t) {
|
|
2853
|
+
console.error(`Error occurred while loading transaction rules: ${t}`);
|
|
2854
|
+
} finally {
|
|
2855
|
+
c(() => {
|
|
2856
|
+
this.transactionRulesLoading = !1;
|
|
2857
|
+
});
|
|
2858
|
+
}
|
|
2859
|
+
}
|
|
2839
2860
|
};
|
|
2840
2861
|
loadTransactions = async (t = this.cachedStartDate) => {
|
|
2841
2862
|
if (!this.transactionsLoading) {
|
|
2842
|
-
this.setIsLoading(!0), this.transactionsLoading = !0
|
|
2863
|
+
this.setIsLoading(!0), this.transactionsLoading = !0;
|
|
2843
2864
|
try {
|
|
2844
2865
|
const e = await this.api.getTransactionsByDateRange(
|
|
2845
2866
|
m(t),
|
|
2846
2867
|
m(q())
|
|
2847
2868
|
);
|
|
2848
|
-
this.setTransactions(e)
|
|
2869
|
+
this.setTransactions(e), c(() => {
|
|
2870
|
+
this.cachedStartDate = t;
|
|
2871
|
+
});
|
|
2849
2872
|
} catch (e) {
|
|
2850
2873
|
console.error(`Error occurred while loading transactions: ${e}`);
|
|
2874
|
+
} finally {
|
|
2875
|
+
c(() => {
|
|
2876
|
+
this.transactionsLoading = !1;
|
|
2877
|
+
}), this.setIsLoading(!1);
|
|
2851
2878
|
}
|
|
2852
|
-
this.setIsLoading(!1);
|
|
2853
2879
|
}
|
|
2854
2880
|
};
|
|
2855
2881
|
modifyTransactionByAccountGuid = (t, e) => {
|
|
@@ -2872,9 +2898,7 @@ class Ue {
|
|
|
2872
2898
|
}
|
|
2873
2899
|
};
|
|
2874
2900
|
setFilter = (t) => {
|
|
2875
|
-
this.filter = t, t.dateRange && H(t.dateRange.start, this.cachedStartDate) && this.loadTransactions(t.dateRange.start)
|
|
2876
|
-
t.dateRange && (this.cachedStartDate = t.dateRange.start);
|
|
2877
|
-
});
|
|
2901
|
+
this.filter = t, t.dateRange && H(t.dateRange.start, this.cachedStartDate) && this.loadTransactions(t.dateRange.start);
|
|
2878
2902
|
};
|
|
2879
2903
|
setIsLoading = (t) => this.isLoading = t;
|
|
2880
2904
|
splitTransaction = async (t, e) => {
|
|
@@ -3118,4 +3142,4 @@ export {
|
|
|
3118
3142
|
He as y,
|
|
3119
3143
|
We as z
|
|
3120
3144
|
};
|
|
3121
|
-
//# sourceMappingURL=UserStore-
|
|
3145
|
+
//# sourceMappingURL=UserStore-E5WvBXaY.mjs.map
|