@mx-cartographer/experiences 9.1.4-alpha.mm0 → 9.1.5
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 -1
- package/dist/{UserStore-DSnLgiGh.mjs → UserStore-DApsX4aO.mjs} +6 -4
- package/dist/UserStore-DApsX4aO.mjs.map +1 -0
- package/dist/common/index.es.js +1 -1
- package/dist/core/index.es.js +1 -1
- package/dist/spending/index.es.js +26 -26
- package/dist/spending/index.es.js.map +1 -1
- package/package.json +1 -1
- package/dist/UserStore-DSnLgiGh.mjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
|
-
## [9.1.
|
|
1
|
+
## [9.1.5] - 07-07-2026
|
|
2
2
|
|
|
3
3
|
- **FIXED** - Transaction dates displayed, grouped, and filtered one day early in negative-offset (US) timezones when the feed stored the date at midnight UTC
|
|
4
4
|
|
|
5
|
+
## [9.1.4] - 07-06-2026
|
|
6
|
+
|
|
7
|
+
- **FIXED** - Spending mini tile intermittently showed a $0 total while the full Spending overlay displayed the correct transactions, caused by the tile requesting category totals before account data finished loading
|
|
8
|
+
- **FIXED** - Category totals (date-range and monthly) now reset their in-flight loading flag and mark as loaded on request failure, so consumers no longer get stuck on an unrecoverable loading spinner and can retry without a hard refresh
|
|
9
|
+
|
|
5
10
|
## [9.1.3] - 07-03-2026
|
|
6
11
|
|
|
7
12
|
- **FIXED** - Spending drawer intermittently showed an empty transaction list for months outside the cached transaction window
|
|
@@ -1073,7 +1073,9 @@ class me {
|
|
|
1073
1073
|
const t = await this.api.getCategories();
|
|
1074
1074
|
this.setCategories(t);
|
|
1075
1075
|
} catch (t) {
|
|
1076
|
-
console.error(`Error occurred while getting categories: ${t}`)
|
|
1076
|
+
console.error(`Error occurred while getting categories: ${t}`), c(() => {
|
|
1077
|
+
this.categoriesLoading = !1;
|
|
1078
|
+
});
|
|
1077
1079
|
}
|
|
1078
1080
|
}
|
|
1079
1081
|
};
|
|
@@ -1088,7 +1090,7 @@ class me {
|
|
|
1088
1090
|
);
|
|
1089
1091
|
this.setDateRangeCategoryTotals(a);
|
|
1090
1092
|
} catch (a) {
|
|
1091
|
-
console.error(`Error occurred while getting date range category totals: ${a}`);
|
|
1093
|
+
console.error(`Error occurred while getting date range category totals: ${a}`), this.setDateRangeCategoryTotals([]);
|
|
1092
1094
|
}
|
|
1093
1095
|
}
|
|
1094
1096
|
};
|
|
@@ -1100,7 +1102,7 @@ class me {
|
|
|
1100
1102
|
const r = await this.api.getMonthlyCategoryTotals(a, o, t);
|
|
1101
1103
|
this.setMonthlyCategoryTotals(r);
|
|
1102
1104
|
} catch (r) {
|
|
1103
|
-
console.error(`Error occurred while getting monthly category totals: ${r}`);
|
|
1105
|
+
console.error(`Error occurred while getting monthly category totals: ${r}`), this.setMonthlyCategoryTotals([]);
|
|
1104
1106
|
}
|
|
1105
1107
|
};
|
|
1106
1108
|
reloadCategoryTotals = async (t, e, s) => {
|
|
@@ -3142,4 +3144,4 @@ export {
|
|
|
3142
3144
|
He as y,
|
|
3143
3145
|
We as z
|
|
3144
3146
|
};
|
|
3145
|
-
//# sourceMappingURL=UserStore-
|
|
3147
|
+
//# sourceMappingURL=UserStore-DApsX4aO.mjs.map
|