@mx-cartographer/experiences 6.14.2-alpha.mega20 → 6.14.2-alpha.mega4
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 +0 -8
- package/dist/index.es.js +9 -12
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
## [6.14.2] - 07-07-2025
|
|
2
|
-
|
|
3
|
-
- **FIXED** - Added decimal input support for Split Transactions on mobile devices
|
|
4
|
-
- **FIXED** - Fixed transaction tag saving and display issues across all widgets
|
|
5
|
-
- **FIXED** - Stabilized data loading with the date range selector
|
|
6
|
-
- **UPDATED** - Display text labels for "Export CSV" and "Add Transaction" buttons on laptop view
|
|
7
|
-
- **UPDATED** - Export CSV now respects user-applied filters and date range selector
|
|
8
|
-
|
|
9
1
|
## [6.14.1] - 07-04-2025
|
|
10
2
|
|
|
11
3
|
- **ADDED** - ZeroState micro widget for recurring transactions.
|
package/dist/index.es.js
CHANGED
|
@@ -5524,11 +5524,14 @@ class Nu {
|
|
|
5524
5524
|
);
|
|
5525
5525
|
};
|
|
5526
5526
|
updateTaggings = async (n, i) => {
|
|
5527
|
-
|
|
5528
|
-
|
|
5529
|
-
|
|
5530
|
-
|
|
5531
|
-
|
|
5527
|
+
for (let a = 0; a < n.length; a++) {
|
|
5528
|
+
const o = n[a];
|
|
5529
|
+
this.taggings.some((r) => r.tag_guid === o) || await this.addTagging(o, i);
|
|
5530
|
+
}
|
|
5531
|
+
for (let a = 0; a < this.taggings.length; a++) {
|
|
5532
|
+
const o = this.taggings[a];
|
|
5533
|
+
n.includes(o.tag_guid) || await this.removeTagging(o.guid);
|
|
5534
|
+
}
|
|
5532
5535
|
await this.loadTaggings();
|
|
5533
5536
|
};
|
|
5534
5537
|
updateTag = async (n) => {
|
|
@@ -6864,15 +6867,11 @@ const Ks = ({ transaction: e }) => {
|
|
|
6864
6867
|
{
|
|
6865
6868
|
amount: d,
|
|
6866
6869
|
"aria-label": c.split_transaction_edit_split_amount,
|
|
6867
|
-
inputProps: {
|
|
6868
|
-
noValidate: !0
|
|
6869
|
-
},
|
|
6870
6870
|
name: "split-amount-input",
|
|
6871
6871
|
setAmount: C,
|
|
6872
6872
|
sx: {
|
|
6873
6873
|
".MuiOutlinedInput-input": { p: r.Spacing.Small }
|
|
6874
|
-
}
|
|
6875
|
-
type: "number"
|
|
6874
|
+
}
|
|
6876
6875
|
}
|
|
6877
6876
|
),
|
|
6878
6877
|
/* @__PURE__ */ t(
|
|
@@ -7674,8 +7673,6 @@ const Ks = ({ transaction: e }) => {
|
|
|
7674
7673
|
dateRange: { start: Ro, end: Oo }
|
|
7675
7674
|
}), K(!0), k(W.TRANSACTIONS_VIEW);
|
|
7676
7675
|
}, []), h.useEffect(() => {
|
|
7677
|
-
ge(o);
|
|
7678
|
-
}, [o]), h.useEffect(() => {
|
|
7679
7676
|
qe && (S({
|
|
7680
7677
|
...E,
|
|
7681
7678
|
accounts: _e,
|