@mx-cartographer/experiences 7.13.17 → 7.13.19
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/{CashflowStore-D3MKniVM.mjs → CashflowStore-CeAzChyD.mjs} +17 -24
- package/dist/{ManageIncome-B808Yjoa.mjs → ManageIncome-B1j-AzI1.mjs} +2 -2
- package/dist/{RecurringSettings-Db8Yrv1K.mjs → RecurringSettings-Dyj3i0ZJ.mjs} +2 -2
- package/dist/{RecurringTransactions-C4jRZQ9t.mjs → RecurringTransactions-tayG19Wn.mjs} +82 -82
- package/dist/{RecurringTransactionsStore-CiRGQ57O.mjs → RecurringTransactionsStore-Dpl39vbj.mjs} +1 -1
- package/dist/{TransactionDetails-DB7cKC2J.mjs → TransactionDetails-CwqokbQo.mjs} +168 -168
- package/dist/accounts/index.es.js +1 -1
- package/dist/budgets/index.es.js +3 -3
- package/dist/cashflow/index.es.js +5 -5
- package/dist/common/index.es.js +5 -5
- package/dist/finstrong/index.es.js +3 -3
- package/dist/recurringtransactions/index.es.js +7 -7
- package/dist/spending/index.es.js +1 -1
- package/dist/transactions/index.es.js +2 -2
- package/dist/trends/index.es.js +50 -50
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [7.13.18] - 04-01-2026
|
|
2
|
+
|
|
3
|
+
- **FIXED** - Budget date now aligns with selected month
|
|
4
|
+
|
|
5
|
+
## [7.13.18] - 04-01-2026
|
|
6
|
+
|
|
7
|
+
- **UPDATED** - Deprecated icons to use mx-icons library
|
|
8
|
+
|
|
1
9
|
## [7.13.17] - 03-31-2026
|
|
2
10
|
|
|
3
11
|
- **UPDATED** - Deprecated `border` color to use `neutral`
|
|
@@ -2,22 +2,22 @@ import { jsx as t, jsxs as m } from "react/jsx-runtime";
|
|
|
2
2
|
import { useState as l } from "react";
|
|
3
3
|
import p from "@mui/material/IconButton";
|
|
4
4
|
import f from "@mui/material/Stack";
|
|
5
|
-
import
|
|
6
|
-
import { Text as a, Icon as
|
|
5
|
+
import d from "@mui/material/Tooltip";
|
|
6
|
+
import { Text as a, Icon as h } from "@mxenabled/mxui";
|
|
7
7
|
import { makeAutoObservable as c } from "mobx";
|
|
8
|
-
import { addDays as
|
|
9
|
-
import { differenceInDays as
|
|
10
|
-
import { endOfMonth as
|
|
8
|
+
import { addDays as u } from "date-fns/addDays";
|
|
9
|
+
import { differenceInDays as x } from "date-fns/differenceInDays";
|
|
10
|
+
import { endOfMonth as g } from "date-fns/endOfMonth";
|
|
11
11
|
import { isBefore as S } from "date-fns/isBefore";
|
|
12
12
|
import { startOfToday as s } from "date-fns/startOfToday";
|
|
13
|
-
const
|
|
13
|
+
const I = ({
|
|
14
14
|
body: o,
|
|
15
15
|
iconName: e = "info",
|
|
16
16
|
title: n
|
|
17
17
|
}) => {
|
|
18
18
|
const [i, r] = l(!1);
|
|
19
19
|
return /* @__PURE__ */ t(
|
|
20
|
-
|
|
20
|
+
d,
|
|
21
21
|
{
|
|
22
22
|
open: i,
|
|
23
23
|
title: /* @__PURE__ */ m(f, { gap: 2, p: 12, sx: { textOverflow: "none" }, children: [
|
|
@@ -36,22 +36,15 @@ const b = ({
|
|
|
36
36
|
minWidth: 0,
|
|
37
37
|
p: 0
|
|
38
38
|
},
|
|
39
|
-
children: /* @__PURE__ */ t(
|
|
40
|
-
d,
|
|
41
|
-
{
|
|
42
|
-
name: e,
|
|
43
|
-
sx: { color: "primary.main", fontSize: 16 },
|
|
44
|
-
weight: u.Dark
|
|
45
|
-
}
|
|
46
|
-
)
|
|
39
|
+
children: /* @__PURE__ */ t(h, { name: e, sx: { color: "primary.main", fontSize: 16 } })
|
|
47
40
|
}
|
|
48
41
|
)
|
|
49
42
|
}
|
|
50
43
|
);
|
|
51
|
-
},
|
|
52
|
-
class
|
|
44
|
+
}, k = I;
|
|
45
|
+
class b {
|
|
53
46
|
// Cashflow is hard-coded to display 30 days starting from today
|
|
54
|
-
dateRange = { start: s(), end:
|
|
47
|
+
dateRange = { start: s(), end: u(s(), 30) };
|
|
55
48
|
isDirty = !1;
|
|
56
49
|
nextIncome = void 0;
|
|
57
50
|
upcomingExpenses = [];
|
|
@@ -61,13 +54,13 @@ class y {
|
|
|
61
54
|
}
|
|
62
55
|
// Returns the number of days until the next income activity or 0 if there is no income activity
|
|
63
56
|
get daysUntilNextIncome() {
|
|
64
|
-
return this.nextIncome ? Math.abs(
|
|
57
|
+
return this.nextIncome ? Math.abs(x(s(), this.nextIncome.expectedDate)) : 0;
|
|
65
58
|
}
|
|
66
59
|
// Returns the expenses (Activities) until the next income activity or the end of the month
|
|
67
60
|
// if there is no income activity
|
|
68
61
|
get expensesTilNextIncome() {
|
|
69
62
|
return this.upcomingExpenses.filter(
|
|
70
|
-
(e) => S(e.expectedDate, this.nextIncome?.expectedDate ||
|
|
63
|
+
(e) => S(e.expectedDate, this.nextIncome?.expectedDate || g(/* @__PURE__ */ new Date()))
|
|
71
64
|
);
|
|
72
65
|
}
|
|
73
66
|
setNextIncome = (e) => {
|
|
@@ -78,11 +71,11 @@ class y {
|
|
|
78
71
|
};
|
|
79
72
|
setSelectedCashAccounts = (e) => this.selectedCashAccounts = e;
|
|
80
73
|
}
|
|
81
|
-
class
|
|
74
|
+
class N {
|
|
82
75
|
globalStore;
|
|
83
76
|
uiStore;
|
|
84
77
|
constructor(e) {
|
|
85
|
-
this.globalStore = e, this.uiStore = new
|
|
78
|
+
this.globalStore = e, this.uiStore = new b(), c(this);
|
|
86
79
|
}
|
|
87
80
|
completeOnboarding = async () => {
|
|
88
81
|
const e = {
|
|
@@ -93,6 +86,6 @@ class P {
|
|
|
93
86
|
};
|
|
94
87
|
}
|
|
95
88
|
export {
|
|
96
|
-
|
|
97
|
-
|
|
89
|
+
N as C,
|
|
90
|
+
k as I
|
|
98
91
|
};
|
|
@@ -10,7 +10,7 @@ import ce from "@mui/material/ListItem";
|
|
|
10
10
|
import de from "@mui/material/ListItemAvatar";
|
|
11
11
|
import le from "@mui/material/ListItemButton";
|
|
12
12
|
import _e from "@mui/material/ListItemText";
|
|
13
|
-
import { F as l, S as M, D as z, g as H, R as L, e as X } from "./RecurringTransactions-
|
|
13
|
+
import { F as l, S as M, D as z, g as H, R as L, e as X } from "./RecurringTransactions-tayG19Wn.mjs";
|
|
14
14
|
import { subDays as Z } from "date-fns/subDays";
|
|
15
15
|
import { startOfToday as E } from "date-fns/startOfToday";
|
|
16
16
|
import { endOfMonth as ue } from "date-fns/endOfMonth";
|
|
@@ -18,7 +18,7 @@ import { parseISO as me } from "date-fns/parseISO";
|
|
|
18
18
|
import J from "@mui/material/Button";
|
|
19
19
|
import { Delete as pe, Add as ye, ReceiptLong as he } from "@mxenabled/mx-icons";
|
|
20
20
|
import { T as V, u as fe, S as ge, a as Ce } from "./StatusIndicator-CIKUOoN_.mjs";
|
|
21
|
-
import { T as be } from "./TransactionDetails-
|
|
21
|
+
import { T as be } from "./TransactionDetails-CwqokbQo.mjs";
|
|
22
22
|
import { addYears as j } from "date-fns/addYears";
|
|
23
23
|
import { getDayOfYear as xe } from "date-fns/getDayOfYear";
|
|
24
24
|
import { setDayOfYear as Se } from "date-fns/setDayOfYear";
|
|
@@ -7,9 +7,9 @@ import R from "@mui/material/Tabs";
|
|
|
7
7
|
import d from "@mui/material/Divider";
|
|
8
8
|
import b from "@mui/material/List";
|
|
9
9
|
import T from "@mui/material/Stack";
|
|
10
|
-
import { R as C, A as S, a as E, M as v } from "./ManageIncome-
|
|
10
|
+
import { R as C, A as S, a as E, M as v } from "./ManageIncome-B1j-AzI1.mjs";
|
|
11
11
|
import { u as _, i as A, g as f } from "./hooks-BxkfR-Ff.mjs";
|
|
12
|
-
import { R as y, F as N } from "./RecurringTransactions-
|
|
12
|
+
import { R as y, F as N } from "./RecurringTransactions-tayG19Wn.mjs";
|
|
13
13
|
import { A as m } from "./Analytics-BYItVAe-.mjs";
|
|
14
14
|
const I = h(() => {
|
|
15
15
|
const { recurring: g } = _(), { detailedRepeatingTransactions: n } = A(), { onEvent: a } = f(), l = (r) => {
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { jsx as d, jsxs as O, Fragment as L } from "react/jsx-runtime";
|
|
2
2
|
import U from "@mui/material/Avatar";
|
|
3
3
|
import M from "@mui/material/ListItem";
|
|
4
4
|
import G from "@mui/material/ListItemAvatar";
|
|
5
5
|
import S from "@mui/material/ListItemButton";
|
|
6
|
-
import C from "@mui/material/
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import { ExpandMore as
|
|
6
|
+
import C from "@mui/material/ListItemIcon";
|
|
7
|
+
import $ from "@mui/material/ListItemText";
|
|
8
|
+
import { Icon as w } from "@mxenabled/mxui";
|
|
9
|
+
import j from "@mui/material/MenuItem";
|
|
10
|
+
import z from "@mui/material/TextField";
|
|
11
|
+
import { ExpandMore as K } from "@mxenabled/mx-icons";
|
|
12
12
|
import { addDays as A } from "date-fns/addDays";
|
|
13
13
|
import { addMonths as h } from "date-fns/addMonths";
|
|
14
14
|
import { addQuarters as Y } from "date-fns/addQuarters";
|
|
15
15
|
import { addWeeks as W } from "date-fns/addWeeks";
|
|
16
|
-
import { addYears as
|
|
17
|
-
import { formatISO as
|
|
18
|
-
import { fromUnixTime as
|
|
16
|
+
import { addYears as H } from "date-fns/addYears";
|
|
17
|
+
import { formatISO as V } from "date-fns/formatISO";
|
|
18
|
+
import { fromUnixTime as J } from "date-fns/fromUnixTime";
|
|
19
19
|
import { getUnixTime as y } from "date-fns/getUnixTime";
|
|
20
20
|
import { isAfter as f } from "date-fns/isAfter";
|
|
21
21
|
import { isBefore as u } from "date-fns/isBefore";
|
|
22
|
-
import { isSameDay as
|
|
23
|
-
import { lastDayOfMonth as
|
|
22
|
+
import { isSameDay as X } from "date-fns/isSameDay";
|
|
23
|
+
import { lastDayOfMonth as Z } from "date-fns/lastDayOfMonth";
|
|
24
24
|
import { nextDay as E } from "date-fns/nextDay";
|
|
25
|
-
import { parseISO as
|
|
26
|
-
import { setDate as
|
|
27
|
-
import { setDay as
|
|
25
|
+
import { parseISO as T } from "date-fns/parseISO";
|
|
26
|
+
import { setDate as _ } from "date-fns/setDate";
|
|
27
|
+
import { setDay as F } from "date-fns/setDay";
|
|
28
28
|
import { setDayOfYear as N } from "date-fns/setDayOfYear";
|
|
29
|
-
import { startOfToday as
|
|
29
|
+
import { startOfToday as b } from "date-fns/startOfToday";
|
|
30
30
|
import { subDays as I } from "date-fns/subDays";
|
|
31
|
-
import { subMonths as
|
|
31
|
+
import { subMonths as R } from "date-fns/subMonths";
|
|
32
32
|
import { subQuarters as B } from "date-fns/subQuarters";
|
|
33
|
-
import { subWeeks as
|
|
34
|
-
import { subYears as
|
|
35
|
-
import { g as
|
|
33
|
+
import { subWeeks as q } from "date-fns/subWeeks";
|
|
34
|
+
import { subYears as ee } from "date-fns/subYears";
|
|
35
|
+
import { g as te, a as re, b as oe, c as ae, d as se, e as ne, f as ce } from "./DateUtil-wcYTmDRD.mjs";
|
|
36
36
|
import { b as Q } from "./NumberFormatting-QCaNwbjv.mjs";
|
|
37
37
|
import { b as l } from "./Localization-CPkpIwIx.mjs";
|
|
38
38
|
import { f as x, D as k } from "./DateFormats-BMpMrZpW.mjs";
|
|
39
|
-
const
|
|
39
|
+
const ie = ({ iconName: e, label: a, onClick: r, value: o }) => {
|
|
40
40
|
const t = /* @__PURE__ */ O(L, { children: [
|
|
41
|
-
/* @__PURE__ */ d(G, { children: /* @__PURE__ */ d(U, { sx: { bgcolor: "neutral.light" }, variant: "rounded", children: /* @__PURE__ */ d(w, { name: e, sx: { color: "text.primary" }
|
|
41
|
+
/* @__PURE__ */ d(G, { children: /* @__PURE__ */ d(U, { sx: { bgcolor: "neutral.light" }, variant: "rounded", children: /* @__PURE__ */ d(w, { name: e, sx: { color: "text.primary" } }) }) }),
|
|
42
42
|
/* @__PURE__ */ d(
|
|
43
|
-
|
|
43
|
+
$,
|
|
44
44
|
{
|
|
45
45
|
primary: a,
|
|
46
46
|
primaryTypographyProps: { variant: "caption" },
|
|
@@ -51,14 +51,14 @@ const ue = ({ iconName: e, label: a, onClick: r, value: o }) => {
|
|
|
51
51
|
] });
|
|
52
52
|
return r ? /* @__PURE__ */ d(M, { disableGutters: !0, disablePadding: !0, children: /* @__PURE__ */ O(S, { onClick: r, children: [
|
|
53
53
|
t,
|
|
54
|
-
/* @__PURE__ */ d(
|
|
54
|
+
/* @__PURE__ */ d(C, { children: /* @__PURE__ */ d(w, { name: "chevron_right", size: 24 }) })
|
|
55
55
|
] }) }) : /* @__PURE__ */ d(M, { disableGutters: !1, disablePadding: !1, children: t });
|
|
56
|
-
},
|
|
57
|
-
|
|
56
|
+
}, ot = ie, at = ({ label: e, onChange: a, options: r, value: o, ...t }) => /* @__PURE__ */ d(
|
|
57
|
+
z,
|
|
58
58
|
{
|
|
59
59
|
InputLabelProps: { shrink: !0 },
|
|
60
60
|
SelectProps: {
|
|
61
|
-
IconComponent: (c) => /* @__PURE__ */ d(
|
|
61
|
+
IconComponent: (c) => /* @__PURE__ */ d(K, { size: 20, sx: { mr: 4 }, ...c })
|
|
62
62
|
},
|
|
63
63
|
defaultValue: 0,
|
|
64
64
|
label: e,
|
|
@@ -69,111 +69,111 @@ const ue = ({ iconName: e, label: a, onClick: r, value: o }) => {
|
|
|
69
69
|
value: o,
|
|
70
70
|
variant: "outlined",
|
|
71
71
|
...t,
|
|
72
|
-
children: r.map((c) => /* @__PURE__ */ d(
|
|
72
|
+
children: r.map((c) => /* @__PURE__ */ d(j, { value: c.id, children: c.label }, c.id))
|
|
73
73
|
}
|
|
74
74
|
);
|
|
75
|
-
var n = /* @__PURE__ */ ((e) => (e[e.Unknown = 0] = "Unknown", e[e.EveryWeek = 1] = "EveryWeek", e[e.EveryOtherWeek = 2] = "EveryOtherWeek", e[e.EveryMonth = 3] = "EveryMonth", e[e.EveryOtherMonth = 4] = "EveryOtherMonth", e[e.EveryQuarter = 5] = "EveryQuarter", e[e.EveryOtherQuarter = 6] = "EveryOtherQuarter", e[e.EveryYear = 7] = "EveryYear", e[e.TwiceAMonth = 8] = "TwiceAMonth", e))(n || {}), p = /* @__PURE__ */ ((e) => (e[e.Paid = 0] = "Paid", e[e.Missed = 1] = "Missed", e[e.Upcoming = 2] = "Upcoming", e))(p || {}),
|
|
76
|
-
const
|
|
75
|
+
var n = /* @__PURE__ */ ((e) => (e[e.Unknown = 0] = "Unknown", e[e.EveryWeek = 1] = "EveryWeek", e[e.EveryOtherWeek = 2] = "EveryOtherWeek", e[e.EveryMonth = 3] = "EveryMonth", e[e.EveryOtherMonth = 4] = "EveryOtherMonth", e[e.EveryQuarter = 5] = "EveryQuarter", e[e.EveryOtherQuarter = 6] = "EveryOtherQuarter", e[e.EveryYear = 7] = "EveryYear", e[e.TwiceAMonth = 8] = "TwiceAMonth", e))(n || {}), p = /* @__PURE__ */ ((e) => (e[e.Paid = 0] = "Paid", e[e.Missed = 1] = "Missed", e[e.Upcoming = 2] = "Upcoming", e))(p || {}), g = /* @__PURE__ */ ((e) => (e[e.Expense = 0] = "Expense", e[e.Income = 1] = "Income", e))(g || {}), P = /* @__PURE__ */ ((e) => (e[e.Unknown = 0] = "Unknown", e[e.Subscription = 1] = "Subscription", e[e.Bill = 2] = "Bill", e[e.Income = 3] = "Income", e[e.Transfer = 4] = "Transfer", e))(P || {});
|
|
76
|
+
const ue = (e) => {
|
|
77
77
|
if (!e) return "";
|
|
78
78
|
let a = e.user_name || e.feed_name || "";
|
|
79
79
|
return e.account_number && (a = `${a} *${e.account_number}`), a;
|
|
80
|
-
},
|
|
80
|
+
}, de = (e, a) => {
|
|
81
81
|
const r = [], o = e.transactions.find(
|
|
82
82
|
(m) => m.repeating_transaction_guid === e.guid
|
|
83
83
|
);
|
|
84
84
|
if (!o) return [];
|
|
85
|
-
const t =
|
|
85
|
+
const t = T(e.predicted_occurs_on), s = {
|
|
86
86
|
accountGuid: e.account?.guid || "",
|
|
87
87
|
amount: e.amount,
|
|
88
88
|
categoryGuid: o.category_guid || "",
|
|
89
89
|
expectedDate: t,
|
|
90
90
|
frequency: e.recurrence_type,
|
|
91
91
|
institutionGuid: e.account?.institution_guid || "",
|
|
92
|
-
institutionName:
|
|
92
|
+
institutionName: ue(e.account),
|
|
93
93
|
merchantGuid: e.merchant_guid,
|
|
94
94
|
name: e.description,
|
|
95
95
|
recurrenceDay: e.recurrence_day,
|
|
96
96
|
repeatingTransactionGuid: e.guid,
|
|
97
97
|
secondRecurrenceDay: e.second_recurrence_day,
|
|
98
98
|
status: p.Upcoming,
|
|
99
|
-
type: e.repeating_transaction_type === P.Income ?
|
|
99
|
+
type: e.repeating_transaction_type === P.Income ? g.Income : g.Expense,
|
|
100
100
|
transaction: void 0
|
|
101
101
|
}, c = a.start, i = a.end;
|
|
102
102
|
switch (e.recurrence_type) {
|
|
103
103
|
case n.EveryWeek:
|
|
104
|
-
r.push(...
|
|
104
|
+
r.push(...me(s, c, i));
|
|
105
105
|
break;
|
|
106
106
|
case n.EveryOtherWeek:
|
|
107
|
-
r.push(...
|
|
107
|
+
r.push(...le(s, c, i));
|
|
108
108
|
break;
|
|
109
109
|
case n.TwiceAMonth:
|
|
110
|
-
r.push(...
|
|
110
|
+
r.push(...he(s, c, i));
|
|
111
111
|
break;
|
|
112
112
|
case n.EveryMonth:
|
|
113
|
-
r.push(...
|
|
113
|
+
r.push(...fe(s, c, i));
|
|
114
114
|
break;
|
|
115
115
|
case n.EveryOtherMonth:
|
|
116
|
-
r.push(...
|
|
116
|
+
r.push(...pe(s, c, i));
|
|
117
117
|
break;
|
|
118
118
|
case n.EveryQuarter:
|
|
119
|
-
r.push(...
|
|
119
|
+
r.push(...ye(s, c, i));
|
|
120
120
|
break;
|
|
121
121
|
case n.EveryOtherQuarter:
|
|
122
122
|
r.push(..._e(s, c, i));
|
|
123
123
|
break;
|
|
124
124
|
case n.EveryYear:
|
|
125
|
-
r.push(...
|
|
125
|
+
r.push(...De(s, c, i));
|
|
126
126
|
break;
|
|
127
127
|
}
|
|
128
128
|
for (const m of r) {
|
|
129
|
-
const
|
|
129
|
+
const D = e.transactions.find(
|
|
130
130
|
(v) => v.repeating_transaction_guid === e.guid && v.date > y(I(m.expectedDate, 5)) && v.date < y(A(m.expectedDate, 5))
|
|
131
131
|
);
|
|
132
|
-
|
|
132
|
+
D ? (m.transaction = D, m.status = p.Paid, m.occurredOnDate = J(D.date)) : u(m.expectedDate, I(b(), 3)) && (m.status = p.Missed);
|
|
133
133
|
}
|
|
134
134
|
return r;
|
|
135
|
-
},
|
|
135
|
+
}, me = (e, a, r) => {
|
|
136
136
|
const o = [];
|
|
137
137
|
let t = E(a, e.recurrenceDay);
|
|
138
138
|
for (; u(t, r); )
|
|
139
139
|
o.push({ ...e, expectedDate: t }), t = E(t, e.recurrenceDay);
|
|
140
140
|
return o;
|
|
141
|
-
},
|
|
141
|
+
}, le = (e, a, r) => {
|
|
142
142
|
const o = [];
|
|
143
143
|
let t = e.expectedDate;
|
|
144
144
|
if (u(t, a))
|
|
145
145
|
for (; u(t, a); )
|
|
146
146
|
t = W(t, 2);
|
|
147
147
|
else {
|
|
148
|
-
for (; f(t, a) ||
|
|
149
|
-
t =
|
|
148
|
+
for (; f(t, a) || X(t, a); )
|
|
149
|
+
t = q(t, 2);
|
|
150
150
|
t = W(t, 2);
|
|
151
151
|
}
|
|
152
152
|
for (; u(t, r); )
|
|
153
153
|
o.push({ ...e, expectedDate: t }), t = A(t, 14);
|
|
154
154
|
return o;
|
|
155
|
-
},
|
|
155
|
+
}, he = (e, a, r) => {
|
|
156
156
|
const o = [];
|
|
157
|
-
let t =
|
|
157
|
+
let t = _(a, e.recurrenceDay);
|
|
158
158
|
for (; u(t, r); )
|
|
159
159
|
o.push({ ...e, expectedDate: t }), t = h(t, 1);
|
|
160
|
-
let s = e.secondRecurrenceDay && e.secondRecurrenceDay < 28 ?
|
|
160
|
+
let s = e.secondRecurrenceDay && e.secondRecurrenceDay < 28 ? _(a, e.secondRecurrenceDay) : Z(a);
|
|
161
161
|
for (; u(s, r); )
|
|
162
162
|
o.push({ ...e, expectedDate: s }), s = h(s, 1);
|
|
163
163
|
return o;
|
|
164
|
-
},
|
|
164
|
+
}, fe = (e, a, r) => {
|
|
165
165
|
const o = [];
|
|
166
|
-
let t =
|
|
166
|
+
let t = _(a, e.recurrenceDay);
|
|
167
167
|
for (o.push({ ...e, expectedDate: t }), t = h(t, 1); u(t, r); )
|
|
168
168
|
o.push({ ...e, expectedDate: t }), t = h(t, 1);
|
|
169
169
|
return o;
|
|
170
|
-
},
|
|
170
|
+
}, pe = (e, a, r) => {
|
|
171
171
|
const o = [], t = e.expectedDate;
|
|
172
|
-
let s = u(t, r) ? t :
|
|
172
|
+
let s = u(t, r) ? t : R(t, 2);
|
|
173
173
|
for (; u(s, r); )
|
|
174
174
|
f(s, a) && o.push({ ...e, expectedDate: s }), s = h(s, 2);
|
|
175
175
|
return o;
|
|
176
|
-
},
|
|
176
|
+
}, ye = (e, a, r) => {
|
|
177
177
|
const o = [], t = e.expectedDate;
|
|
178
178
|
let s = u(t, r) ? t : B(t, 1);
|
|
179
179
|
for (; u(s, r); )
|
|
@@ -185,22 +185,22 @@ const de = (e) => {
|
|
|
185
185
|
for (; u(s, r); )
|
|
186
186
|
f(s, a) && o.push({ ...e, expectedDate: s }), s = Y(s, 2);
|
|
187
187
|
return o;
|
|
188
|
-
},
|
|
188
|
+
}, De = (e, a, r) => {
|
|
189
189
|
const o = [], t = e.expectedDate;
|
|
190
|
-
let s = u(t, r) ? t :
|
|
190
|
+
let s = u(t, r) ? t : ee(t, 1);
|
|
191
191
|
for (; u(s, r); )
|
|
192
|
-
f(s, a) && o.push({ ...e, expectedDate: s }), s =
|
|
192
|
+
f(s, a) && o.push({ ...e, expectedDate: s }), s = H(s, 1);
|
|
193
193
|
return o;
|
|
194
|
-
},
|
|
194
|
+
}, st = (e, a) => {
|
|
195
195
|
const r = [];
|
|
196
196
|
for (const o of e) {
|
|
197
|
-
const t =
|
|
197
|
+
const t = de(o, a);
|
|
198
198
|
r.push(...t);
|
|
199
199
|
}
|
|
200
200
|
return r.sort(
|
|
201
201
|
(o, t) => y(o.occurredOnDate || o.expectedDate) - y(t.occurredOnDate || t.expectedDate)
|
|
202
202
|
);
|
|
203
|
-
},
|
|
203
|
+
}, nt = (e, a, r) => {
|
|
204
204
|
const o = [];
|
|
205
205
|
for (const t of a) {
|
|
206
206
|
const s = r.filter(
|
|
@@ -213,8 +213,8 @@ const de = (e) => {
|
|
|
213
213
|
});
|
|
214
214
|
}
|
|
215
215
|
return o;
|
|
216
|
-
},
|
|
217
|
-
const o =
|
|
216
|
+
}, ct = (e) => e.reduce((a, r) => {
|
|
217
|
+
const o = V(r.expectedDate, { representation: "date" }), t = a.find(
|
|
218
218
|
(s) => s.date.toString() === r.expectedDate.toString()
|
|
219
219
|
);
|
|
220
220
|
return t ? t.recurrences.push(r) : a.push({
|
|
@@ -222,8 +222,8 @@ const de = (e) => {
|
|
|
222
222
|
id: `date-${o}`,
|
|
223
223
|
recurrences: [r]
|
|
224
224
|
}), a;
|
|
225
|
-
}, []),
|
|
226
|
-
const o = E(
|
|
225
|
+
}, []), it = (e, a, r) => {
|
|
226
|
+
const o = E(b(), a.recurrence_day), t = N(b(), a.recurrence_day), s = Q(a.recurrence_day), c = a.second_recurrence_day ? Q(a.second_recurrence_day) : "";
|
|
227
227
|
let i = r ? l(e.monthly_ordinal, s) : e.monthly;
|
|
228
228
|
switch (a.recurrence_type) {
|
|
229
229
|
case n.EveryQuarter:
|
|
@@ -258,45 +258,45 @@ const de = (e) => {
|
|
|
258
258
|
break;
|
|
259
259
|
}
|
|
260
260
|
return i;
|
|
261
|
-
},
|
|
261
|
+
}, ut = (e, a, r) => {
|
|
262
262
|
let o = a;
|
|
263
|
-
r !== void 0 && (e === n.EveryWeek || e === n.EveryOtherWeek ? o =
|
|
263
|
+
r !== void 0 && (e === n.EveryWeek || e === n.EveryOtherWeek ? o = F(a, r) : e === n.EveryYear ? o = N(a, r) : o = _(a, r));
|
|
264
264
|
let t = o;
|
|
265
265
|
switch (e) {
|
|
266
266
|
case n.EveryWeek:
|
|
267
|
-
t =
|
|
267
|
+
t = ce(o);
|
|
268
268
|
break;
|
|
269
269
|
case n.EveryOtherWeek:
|
|
270
|
-
t =
|
|
270
|
+
t = ne(o);
|
|
271
271
|
break;
|
|
272
272
|
case n.EveryMonth:
|
|
273
|
-
t =
|
|
273
|
+
t = se(o);
|
|
274
274
|
break;
|
|
275
275
|
case n.EveryOtherMonth:
|
|
276
|
-
t =
|
|
276
|
+
t = ae(o);
|
|
277
277
|
break;
|
|
278
278
|
case n.EveryQuarter:
|
|
279
|
-
t =
|
|
279
|
+
t = oe(o);
|
|
280
280
|
break;
|
|
281
281
|
case n.EveryOtherQuarter:
|
|
282
|
-
t =
|
|
282
|
+
t = re(o);
|
|
283
283
|
break;
|
|
284
284
|
case n.EveryYear:
|
|
285
|
-
t =
|
|
285
|
+
t = te(o);
|
|
286
286
|
break;
|
|
287
287
|
}
|
|
288
288
|
return t;
|
|
289
289
|
};
|
|
290
290
|
export {
|
|
291
|
-
|
|
291
|
+
ot as D,
|
|
292
292
|
n as F,
|
|
293
293
|
P as R,
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
294
|
+
at as S,
|
|
295
|
+
nt as a,
|
|
296
|
+
st as b,
|
|
297
297
|
p as c,
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
298
|
+
g as d,
|
|
299
|
+
ut as e,
|
|
300
|
+
ct as f,
|
|
301
|
+
it as g
|
|
302
302
|
};
|
package/dist/{RecurringTransactionsStore-CiRGQ57O.mjs → RecurringTransactionsStore-Dpl39vbj.mjs}
RENAMED
|
@@ -8,7 +8,7 @@ import { startOfMonth as y } from "date-fns/startOfMonth";
|
|
|
8
8
|
import { startOfToday as i } from "date-fns/startOfToday";
|
|
9
9
|
import { subDays as I } from "date-fns/subDays";
|
|
10
10
|
import { F as x, A as o } from "./Fetch-B6tMJC1r.mjs";
|
|
11
|
-
import { a as u, b as A, c as r, d } from "./RecurringTransactions-
|
|
11
|
+
import { a as u, b as A, c as r, d } from "./RecurringTransactions-tayG19Wn.mjs";
|
|
12
12
|
var E = /* @__PURE__ */ ((a) => (a.Small = "small", a.Medium = "medium", a.Large = "large", a))(E || {});
|
|
13
13
|
const G = 44;
|
|
14
14
|
class h {
|