@mx-cartographer/experiences 7.4.6 → 7.4.7
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 +4 -0
- package/dist/{Donut-oaQFlbit.mjs → Donut-Dmy3JTWd.mjs} +12 -12
- package/dist/{SpendingLegend-BbrZWbFX.mjs → SpendingLegend-Bf-wbJvb.mjs} +10 -10
- package/dist/common/components/charts/index.d.ts +0 -1
- package/dist/common/index.es.js +80 -82
- package/dist/finstrong/index.es.js +1 -1
- package/dist/investments/index.es.js +1 -1
- package/dist/spending/index.es.js +1 -1
- package/dist/spending/utils/SpendingData.d.ts +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,11 +3,11 @@ import b from "react";
|
|
|
3
3
|
import { selectAll as m, interpolateString as x, arc as I } from "d3";
|
|
4
4
|
import d from "@mui/material/Box";
|
|
5
5
|
import { useTheme as S } from "@mui/material/styles";
|
|
6
|
-
const k = 100, E = 140, v = 10,
|
|
6
|
+
const k = 100, E = 140, v = 10, j = ({
|
|
7
7
|
data: u,
|
|
8
8
|
hoveredId: h,
|
|
9
|
-
onClick:
|
|
10
|
-
onMouseEnter:
|
|
9
|
+
onClick: a,
|
|
10
|
+
onMouseEnter: s,
|
|
11
11
|
onMouseLeave: l,
|
|
12
12
|
selectedId: i,
|
|
13
13
|
size: t = 300,
|
|
@@ -16,10 +16,10 @@ const k = 100, E = 140, v = 10, B = ({
|
|
|
16
16
|
const f = S();
|
|
17
17
|
let r = 0;
|
|
18
18
|
const g = (o, n) => {
|
|
19
|
-
(o.key === "Enter" || o.key === " ") && (o.preventDefault(),
|
|
19
|
+
(o.key === "Enter" || o.key === " ") && (o.preventDefault(), a?.(n));
|
|
20
20
|
}, y = (o) => {
|
|
21
|
-
|
|
22
|
-
},
|
|
21
|
+
s?.(o);
|
|
22
|
+
}, w = (o) => {
|
|
23
23
|
l?.(o);
|
|
24
24
|
};
|
|
25
25
|
return b.useEffect(() => {
|
|
@@ -45,11 +45,11 @@ const k = 100, E = 140, v = 10, B = ({
|
|
|
45
45
|
/* @__PURE__ */ e("g", { children: u.map((o) => {
|
|
46
46
|
const n = r;
|
|
47
47
|
r = r + 2 * Math.PI * (o.value / 100);
|
|
48
|
-
const
|
|
48
|
+
const D = r, R = I().cornerRadius(4)({
|
|
49
49
|
innerRadius: k,
|
|
50
50
|
outerRadius: E + (o.id === i || o.id === h ? v : 0),
|
|
51
51
|
startAngle: n,
|
|
52
|
-
endAngle:
|
|
52
|
+
endAngle: D,
|
|
53
53
|
padAngle: 0.025
|
|
54
54
|
});
|
|
55
55
|
return /* @__PURE__ */ e(
|
|
@@ -60,11 +60,11 @@ const k = 100, E = 140, v = 10, B = ({
|
|
|
60
60
|
className: "arc-outer",
|
|
61
61
|
d: R,
|
|
62
62
|
fill: o.color,
|
|
63
|
-
onBlur: () =>
|
|
64
|
-
onClick: () =>
|
|
63
|
+
onBlur: () => w(o.id),
|
|
64
|
+
onClick: () => a?.(o.id),
|
|
65
65
|
onFocus: () => y(o.id),
|
|
66
66
|
onKeyDown: (A) => g(A, o.id),
|
|
67
|
-
onMouseEnter: () =>
|
|
67
|
+
onMouseEnter: () => s?.(o.id),
|
|
68
68
|
onMouseLeave: () => l?.(o.id),
|
|
69
69
|
role: "button",
|
|
70
70
|
style: {
|
|
@@ -80,7 +80,7 @@ const k = 100, E = 140, v = 10, B = ({
|
|
|
80
80
|
}
|
|
81
81
|
)
|
|
82
82
|
] });
|
|
83
|
-
}
|
|
83
|
+
};
|
|
84
84
|
export {
|
|
85
85
|
j as D
|
|
86
86
|
};
|
|
@@ -3,12 +3,12 @@ import { b as p } from "./Category-CevNQ03n.mjs";
|
|
|
3
3
|
import { jsxs as y, Fragment as v, jsx as c } from "react/jsx-runtime";
|
|
4
4
|
import x from "react";
|
|
5
5
|
import { observer as w } from "mobx-react-lite";
|
|
6
|
+
import M from "@mui/material/Button";
|
|
6
7
|
import f from "@mui/material/Stack";
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import
|
|
10
|
-
import {
|
|
11
|
-
import { D as O } from "./Donut-oaQFlbit.mjs";
|
|
8
|
+
import { useTheme as N } from "@mui/material/styles";
|
|
9
|
+
import { CategoryIcon as k, CategoryIconVariants as A, Text as h } from "@mxenabled/mxui";
|
|
10
|
+
import { D as G } from "./Donut-Dmy3JTWd.mjs";
|
|
11
|
+
import { u as O } from "./TransactionDetails-COH0OKNG.mjs";
|
|
12
12
|
import { u as $ } from "./hooks-C41HAxM5.mjs";
|
|
13
13
|
import { u as j } from "./useScreenSize-B6JyS_Lj.mjs";
|
|
14
14
|
import { f as D } from "./NumberFormatting-DjTD0t3W.mjs";
|
|
@@ -99,7 +99,7 @@ const T = 5, B = (i, l, g, d) => d.reduce((o, n) => {
|
|
|
99
99
|
totalLabel: a,
|
|
100
100
|
variant: t = "mini"
|
|
101
101
|
}) => {
|
|
102
|
-
const { spending: r } = $(), m =
|
|
102
|
+
const { spending: r } = $(), m = N(), { isTablet: e } = j(), { announce: s, ariaLive: C } = O(), u = x.useMemo(
|
|
103
103
|
() => o ? i.categoryData.find((b) => b.guid === o) : void 0,
|
|
104
104
|
[o]
|
|
105
105
|
);
|
|
@@ -114,7 +114,7 @@ const T = 5, B = (i, l, g, d) => d.reduce((o, n) => {
|
|
|
114
114
|
}, I = e ? 32 : 48;
|
|
115
115
|
return /* @__PURE__ */ y(v, { children: [
|
|
116
116
|
C,
|
|
117
|
-
/* @__PURE__ */ c(
|
|
117
|
+
/* @__PURE__ */ c(G, { data: S, onClick: g, selectedId: o, size: n, children: /* @__PURE__ */ c(f, { alignItems: "center", height: "100%", justifyContent: "center", width: "100%", children: /* @__PURE__ */ y(f, { alignItems: "center", justifyContent: "center", minHeight: n, minWidth: n, children: [
|
|
118
118
|
u && /* @__PURE__ */ y(
|
|
119
119
|
f,
|
|
120
120
|
{
|
|
@@ -125,11 +125,11 @@ const T = 5, B = (i, l, g, d) => d.reduce((o, n) => {
|
|
|
125
125
|
sx: t === "mini" ? { gap: 0, mb: 0 } : { gap: { xs: 4, xl: 8 }, mb: { xs: 4, xl: 8 } },
|
|
126
126
|
children: [
|
|
127
127
|
/* @__PURE__ */ c(
|
|
128
|
-
|
|
128
|
+
k,
|
|
129
129
|
{
|
|
130
130
|
categoryGuid: l ? p.INCOME : u.guid,
|
|
131
131
|
size: t === "mini" ? 24 : I,
|
|
132
|
-
variant:
|
|
132
|
+
variant: A.Transparent
|
|
133
133
|
}
|
|
134
134
|
),
|
|
135
135
|
/* @__PURE__ */ c(
|
|
@@ -148,7 +148,7 @@ const T = 5, B = (i, l, g, d) => d.reduce((o, n) => {
|
|
|
148
148
|
/* @__PURE__ */ c(h, { variant: t === "mini" ? "H2" : "H1", children: u ? D(u.amount, "0,0") : D(i.totalAmount, "0,0") }),
|
|
149
149
|
!u && t === "mini" && /* @__PURE__ */ c(h, { color: "secondary", noWrap: !0, variant: "Tiny", children: a }),
|
|
150
150
|
t === "full" && /* @__PURE__ */ c(
|
|
151
|
-
|
|
151
|
+
M,
|
|
152
152
|
{
|
|
153
153
|
"aria-label": `View ${u?.name || ""} Transactions`,
|
|
154
154
|
disabled: i.categoryData.length === 0,
|
package/dist/common/index.es.js
CHANGED
|
@@ -37,22 +37,21 @@ import { jsxs as y, jsx as n } from "react/jsx-runtime";
|
|
|
37
37
|
import dt, { useRef as lt, useEffect as ut } from "react";
|
|
38
38
|
import { css as x, keyframes as ht } from "@mxenabled/cssinjs";
|
|
39
39
|
import { useTokens as C, Text as B } from "@mxenabled/mxui";
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import { a as Lr, D as Gr, O as Hr, b as Fr, f as Wr } from "../Dialog-BPTr3qHE.mjs";
|
|
40
|
+
import { S as Rr } from "../StatusBar-BK_uYHAB.mjs";
|
|
41
|
+
import { a as Pr, D as Or, O as Lr, b as Gr, f as Hr } from "../Dialog-BPTr3qHE.mjs";
|
|
43
42
|
import { D as gt, a as pt } from "../SingleSegmentDonut-BgbLgwHi.mjs";
|
|
44
|
-
import { S as
|
|
45
|
-
import { D as
|
|
46
|
-
import { I as
|
|
43
|
+
import { S as Wr } from "../SingleSegmentDonut-BgbLgwHi.mjs";
|
|
44
|
+
import { D as Yr } from "../Drawer-BEtCk82g.mjs";
|
|
45
|
+
import { I as zr, P as Xr, S as jr } from "../Account-01wOyrH1.mjs";
|
|
47
46
|
import { b as E } from "../Category-CevNQ03n.mjs";
|
|
48
|
-
import { C as
|
|
49
|
-
import { C as
|
|
47
|
+
import { C as Vr, c as Zr, a as Jr, P as to } from "../Category-CevNQ03n.mjs";
|
|
48
|
+
import { C as so, f as ro, b as oo, a as ao, g as no, i as io } from "../NumberFormatting-DjTD0t3W.mjs";
|
|
50
49
|
import { R as mt } from "../RecurringTransactionsStore-BhBUVm9a.mjs";
|
|
51
|
-
import { S as
|
|
52
|
-
import { G as
|
|
53
|
-
import { u as
|
|
54
|
-
import { u as
|
|
55
|
-
import { u as
|
|
50
|
+
import { S as lo, T as uo } from "../RecurringTransactionsStore-BhBUVm9a.mjs";
|
|
51
|
+
import { G as go, C as po, D as mo, W as _o, d as fo, a as yo, i as So, v as bo, m as wo, x as xo, y as Co, g as vo, z as Do, u as Ao, f as Eo, b as To, l as Bo, A as Io, t as No, n as Mo, c as $o, r as ko, o as Ro, B as Uo, j as Po, s as Oo, h as Lo, w as Go, p as Ho, q as Fo } from "../hooks-C41HAxM5.mjs";
|
|
52
|
+
import { u as qo } from "../useAccountDisplayName-CMMlIOXF.mjs";
|
|
53
|
+
import { u as Qo } from "../useInsightsEnabled-CNjP5cfR.mjs";
|
|
54
|
+
import { u as Xo } from "../useScreenSize-B6JyS_Lj.mjs";
|
|
56
55
|
import { makeAutoObservable as f, runInAction as p, reaction as _t, autorun as ft } from "mobx";
|
|
57
56
|
import { a as yt } from "../AccountStore-C1zMBzHq.mjs";
|
|
58
57
|
import St from "posthog-js";
|
|
@@ -61,7 +60,7 @@ import { endOfMonth as Z } from "date-fns/endOfMonth";
|
|
|
61
60
|
import { startOfMonth as J } from "date-fns/startOfMonth";
|
|
62
61
|
import { startOfToday as O } from "date-fns/startOfToday";
|
|
63
62
|
import { f as wt, a as xt, b as L } from "../BudgetUtil-Df2nII9u.mjs";
|
|
64
|
-
import { g as
|
|
63
|
+
import { g as Ko, e as Vo, c as Zo, d as Jo, i as ta } from "../BudgetUtil-Df2nII9u.mjs";
|
|
65
64
|
import { a as Ct } from "../DebtsStore-Bu8rRRSL.mjs";
|
|
66
65
|
import { F as vt } from "../FinstrongStore-BIrX0Xg2.mjs";
|
|
67
66
|
import { A as Dt, m as At, a as Et, b as Tt } from "../InvestmentUtil-jOyOgzIB.mjs";
|
|
@@ -70,8 +69,8 @@ import { N as It } from "../NetWorthStore-CpL_kqvx.mjs";
|
|
|
70
69
|
import { a as Nt } from "../SettingsStore-krIRNwHK.mjs";
|
|
71
70
|
import { addMonths as Mt } from "date-fns/addMonths";
|
|
72
71
|
import { getMonth as T } from "date-fns/getMonth";
|
|
73
|
-
import { i as
|
|
74
|
-
import { b as
|
|
72
|
+
import { i as sa } from "../DateUtil-CBdcsyuk.mjs";
|
|
73
|
+
import { b as oa, a as aa, g as na } from "../Localization-2MODESHW.mjs";
|
|
75
74
|
import { alpha as $t, lighten as G, darken as H } from "@mui/material";
|
|
76
75
|
var kt = /* @__PURE__ */ ((s) => (s[s.Unknown = 0] = "Unknown", s[s.EveryWeek = 1] = "EveryWeek", s[s.EveryOtherWeek = 2] = "EveryOtherWeek", s[s.EveryMonth = 3] = "EveryMonth", s[s.EveryOtherMonth = 4] = "EveryOtherMonth", s[s.EveryQuarter = 5] = "EveryQuarter", s[s.EveryOtherQuarter = 6] = "EveryOtherQuarter", s[s.EveryYear = 7] = "EveryYear", s))(kt || {});
|
|
77
76
|
const Qe = [
|
|
@@ -1257,25 +1256,24 @@ export {
|
|
|
1257
1256
|
ps as Calendar,
|
|
1258
1257
|
ms as CalendarSelectionTypes,
|
|
1259
1258
|
ls as CategoryApi,
|
|
1260
|
-
|
|
1261
|
-
|
|
1259
|
+
Vr as CategoryColors,
|
|
1260
|
+
Zr as CategoryGuidToName,
|
|
1262
1261
|
E as CategoryGuids,
|
|
1263
|
-
|
|
1262
|
+
Jr as CategoryIcon,
|
|
1264
1263
|
mr as ConnectCard,
|
|
1265
1264
|
Rs as ConnectDrawer,
|
|
1266
1265
|
Us as ConnectionStatus,
|
|
1267
1266
|
Ps as ConnectionStatusEnums,
|
|
1268
|
-
|
|
1267
|
+
so as CurrencyCodes,
|
|
1269
1268
|
Qs as CurrencyInput,
|
|
1270
1269
|
br as CurrencyText,
|
|
1271
|
-
|
|
1270
|
+
Pr as DATE_FORMATS_INTL,
|
|
1272
1271
|
gt as DEFAULT_DONUT_SIZE,
|
|
1273
1272
|
pt as DEFAULT_STROKE_WIDTH,
|
|
1274
1273
|
nr as DataRow,
|
|
1275
1274
|
As as DateRangeSelector,
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
zr as Drawer,
|
|
1275
|
+
Or as Dialog,
|
|
1276
|
+
Yr as Drawer,
|
|
1279
1277
|
xr as EmptyState,
|
|
1280
1278
|
Ss as ErrorBoundary,
|
|
1281
1279
|
Os as ErrorStatuses,
|
|
@@ -1284,11 +1282,11 @@ export {
|
|
|
1284
1282
|
ir as Frequency,
|
|
1285
1283
|
$ as GlobalCopyApi,
|
|
1286
1284
|
ee as GlobalCopyStore,
|
|
1287
|
-
|
|
1288
|
-
|
|
1285
|
+
go as GlobalDataContext,
|
|
1286
|
+
po as GlobalDataProvider,
|
|
1289
1287
|
ts as GlobalStore,
|
|
1290
1288
|
_r as GoalType,
|
|
1291
|
-
|
|
1289
|
+
zr as INCOME_ACCOUNT_TYPES,
|
|
1292
1290
|
or as IconBacking,
|
|
1293
1291
|
gr as InformationTooltip,
|
|
1294
1292
|
Ir as InsightNotificationTypes,
|
|
@@ -1307,10 +1305,10 @@ export {
|
|
|
1307
1305
|
Gs as NonConnectedStatuses,
|
|
1308
1306
|
hs as NotificationApi,
|
|
1309
1307
|
Nr as NotificationTypes,
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1308
|
+
Lr as ORDINAL_DATE_FORMAT,
|
|
1309
|
+
Gr as ORDINAL_MONTH_DAY_YEAR_FORMAT,
|
|
1310
|
+
Xr as PAYMENT_ACCOUNT_TYPES,
|
|
1311
|
+
to as PaymentCategories,
|
|
1314
1312
|
Rt as PlanTypes,
|
|
1315
1313
|
Hs as ProcessingStatuses,
|
|
1316
1314
|
Fs as PropertyType,
|
|
@@ -1321,18 +1319,18 @@ export {
|
|
|
1321
1319
|
kt as RecurrenceTypes,
|
|
1322
1320
|
lr as RepeatingType,
|
|
1323
1321
|
Ks as ResponsiveButton,
|
|
1324
|
-
|
|
1322
|
+
jr as SPENDING_ACCOUNT_TYPES,
|
|
1325
1323
|
Ht as ScheduledPaymentTypes,
|
|
1326
1324
|
Ke as ScheduledPaymentsApi,
|
|
1327
1325
|
Ft as ScreenSize,
|
|
1328
1326
|
Zs as SearchBox,
|
|
1329
1327
|
ur as Select,
|
|
1330
1328
|
tr as SelectionBox,
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1329
|
+
Wr as SingleSegmentDonut,
|
|
1330
|
+
lo as Sizes,
|
|
1331
|
+
Rr as StatusBar,
|
|
1334
1332
|
qs as StatusName,
|
|
1335
|
-
|
|
1333
|
+
uo as TOUCH_TARGET,
|
|
1336
1334
|
sr as TabContentContainer,
|
|
1337
1335
|
Mr as ToggleButtonListItem,
|
|
1338
1336
|
$r as ToggleListItem,
|
|
@@ -1344,55 +1342,55 @@ export {
|
|
|
1344
1342
|
Lt as UserVerification,
|
|
1345
1343
|
W as WidgetApi,
|
|
1346
1344
|
Es as WidgetContainer,
|
|
1347
|
-
|
|
1348
|
-
|
|
1345
|
+
mo as WidgetContainerContext,
|
|
1346
|
+
_o as WidgetContainerProvider,
|
|
1349
1347
|
os as analyticsSession,
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1348
|
+
oa as buildDynamicCopy,
|
|
1349
|
+
aa as buildPluralCopy,
|
|
1350
|
+
ro as formatCurrency,
|
|
1351
|
+
Hr as formatDate,
|
|
1352
|
+
oo as formatOrdinal,
|
|
1353
|
+
ao as formatPercentage,
|
|
1354
|
+
sa as fromTimestampToMonthYear,
|
|
1355
|
+
Ko as getCategory,
|
|
1356
|
+
Vo as getCategoryTotalsByParent,
|
|
1359
1357
|
Xe as getClientTheme,
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1358
|
+
no as getCurrencyCodes,
|
|
1359
|
+
Zo as getDetailedCategory,
|
|
1360
|
+
Jo as getDetailedSubCategory,
|
|
1361
|
+
na as getLocale,
|
|
1362
|
+
ta as isIncome,
|
|
1363
|
+
io as isValidNumber,
|
|
1364
|
+
qo as useAccountDisplayName,
|
|
1365
|
+
fo as useAccountStore,
|
|
1366
|
+
yo as useAppConfig,
|
|
1367
|
+
So as useBudgetsStore,
|
|
1368
|
+
bo as useCashflowStore,
|
|
1369
|
+
wo as useCategoryStore,
|
|
1372
1370
|
as as useCombineEvents,
|
|
1373
1371
|
ns as useCombinePageviews,
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1372
|
+
xo as useDebtStore,
|
|
1373
|
+
Co as useError,
|
|
1374
|
+
vo as useEvent,
|
|
1375
|
+
Do as useFinstrongStore,
|
|
1376
|
+
Ao as useGlobalCopyStore,
|
|
1377
|
+
Eo as useGlobalStore,
|
|
1378
|
+
To as useGlobalUiStore,
|
|
1379
|
+
Bo as useGoalStore,
|
|
1380
|
+
Io as useHelpStore,
|
|
1381
|
+
No as useHoldingStore,
|
|
1382
|
+
Qo as useInsightsEnabled,
|
|
1383
|
+
Mo as useLoad,
|
|
1384
|
+
$o as useMerchantStore,
|
|
1385
|
+
ko as useNetWorthStore,
|
|
1386
|
+
Ro as useNotificationStore,
|
|
1387
|
+
Uo as usePageView,
|
|
1390
1388
|
Ve as usePrevious,
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1389
|
+
Po as useRecurringTransactionsStore,
|
|
1390
|
+
Xo as useScreenSize,
|
|
1391
|
+
Oo as useSettingsStore,
|
|
1392
|
+
Lo as useTransactionStore,
|
|
1393
|
+
Go as useTrendsStore,
|
|
1394
|
+
Ho as useUserStore,
|
|
1395
|
+
Fo as useWidgetContainerProvider
|
|
1398
1396
|
};
|
|
@@ -48,7 +48,7 @@ import { ResponsiveChartContainer as Jn } from "@mui/x-charts/ResponsiveChartCon
|
|
|
48
48
|
import { useSpring as eo, animated as at } from "@react-spring/web";
|
|
49
49
|
import { startOfMonth as At } from "date-fns/startOfMonth";
|
|
50
50
|
import { endOfMonth as Tt } from "date-fns/endOfMonth";
|
|
51
|
-
import { g as to, S as no, b as oo } from "../SpendingLegend-
|
|
51
|
+
import { g as to, S as no, b as oo } from "../SpendingLegend-Bf-wbJvb.mjs";
|
|
52
52
|
import { formatISO as ro } from "date-fns/formatISO";
|
|
53
53
|
import { fromUnixTime as ao } from "date-fns/fromUnixTime";
|
|
54
54
|
import { startOfToday as it } from "date-fns/startOfToday";
|
|
@@ -22,7 +22,7 @@ import { a as Oe, f as oe } from "../NumberFormatting-DjTD0t3W.mjs";
|
|
|
22
22
|
import { u as U } from "../useScreenSize-B6JyS_Lj.mjs";
|
|
23
23
|
import le from "@mui/material/styles/useTheme";
|
|
24
24
|
import { Icon as k } from "@mxenabled/mx-icons";
|
|
25
|
-
import { D as Ve } from "../Donut-
|
|
25
|
+
import { D as Ve } from "../Donut-Dmy3JTWd.mjs";
|
|
26
26
|
import { useTheme as Re } from "@mui/material/styles";
|
|
27
27
|
import { f as Pe, A as V } from "../InvestmentUtil-jOyOgzIB.mjs";
|
|
28
28
|
import Xe from "@mui/material/ListItemText";
|
|
@@ -8,7 +8,7 @@ import C from "@mui/material/Stack";
|
|
|
8
8
|
import E from "@mui/material/Tab";
|
|
9
9
|
import st from "@mui/material/Tabs";
|
|
10
10
|
import ft from "@mui/material/styles/useTheme";
|
|
11
|
-
import { g as ct, a as lt, S as W, b as Q } from "../SpendingLegend-
|
|
11
|
+
import { g as ct, a as lt, S as W, b as Q } from "../SpendingLegend-Bf-wbJvb.mjs";
|
|
12
12
|
import { Text as y, Icon as bt } from "@mxenabled/mxui";
|
|
13
13
|
import { f as A } from "../NumberFormatting-DjTD0t3W.mjs";
|
|
14
14
|
import { u as v, b as R, m as F, d as dt, n as _t, a as V, h as Ct, g as yt } from "../hooks-C41HAxM5.mjs";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Theme } from '@mui/material';
|
|
2
|
-
import { Category, DateRangeCategoryTotals,
|
|
2
|
+
import { Category, DateRangeCategoryTotals, GoalsCopy } from '../../common';
|
|
3
|
+
import { DonutData } from '../../common/components/charts/Donut';
|
|
3
4
|
export interface CategoryTotal {
|
|
4
5
|
guid: string;
|
|
5
6
|
name: string;
|