@mx-cartographer/experiences 7.0.20-alpha.sms1 → 7.0.21-alpha-spending-mini-widget-ram1
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 +7 -2
- package/dist/{AccountDetailsContent-BzD6CDIm.mjs → AccountDetailsContent-UxSEMBo_.mjs} +1 -1
- package/dist/{ManageIncome-DcKHpJ9V.mjs → ManageIncome-DbsiKUoO.mjs} +1 -1
- package/dist/{NotificationSettings-Dhf_u5o-.mjs → NotificationSettings-BJFyyZYE.mjs} +2 -2
- package/dist/{RecurringSettings-C9r4s1Cz.mjs → RecurringSettings-Dj29piAQ.mjs} +1 -1
- package/dist/{TransactionDetails-bja6hKJk.mjs → TransactionDetails-C-z3HGTT.mjs} +1 -1
- package/dist/{ViewMoreMicroCard-BFZShKxm.mjs → ViewMoreMicroCard-BPEzFZRG.mjs} +226 -234
- package/dist/accounts/index.es.js +2 -2
- package/dist/budgets/index.es.js +2 -2
- package/dist/cashflow/index.es.js +3 -3
- package/dist/common/index.es.js +359 -362
- package/dist/common/utils/Theme.d.ts +22 -22
- package/dist/finstrong/index.es.js +1 -1
- package/dist/goals/index.es.js +1 -1
- package/dist/microinsights/index.es.js +1 -1
- package/dist/notifications/index.es.js +1 -1
- package/dist/recurringtransactions/index.es.js +4 -4
- package/dist/settings/index.es.js +2 -2
- package/dist/spending/index.es.js +123 -123
- package/dist/transactions/index.es.js +2 -2
- package/dist/trends/index.es.js +6 -3
- package/package.json +1 -1
|
@@ -1,67 +1,67 @@
|
|
|
1
1
|
import { Theme } from '@mui/material';
|
|
2
2
|
import { ClientStyleProfile } from '../types';
|
|
3
|
-
export declare const getClientTheme: (theme: Theme,
|
|
3
|
+
export declare const getClientTheme: (theme: Theme, clientStyleProfile: ClientStyleProfile) => {
|
|
4
4
|
typography: {
|
|
5
|
-
fontFamily: string;
|
|
5
|
+
fontFamily: string | undefined;
|
|
6
6
|
H1: {
|
|
7
|
-
fontFamily: string;
|
|
7
|
+
fontFamily: string | undefined;
|
|
8
8
|
};
|
|
9
9
|
h1: {
|
|
10
|
-
fontFamily: string;
|
|
10
|
+
fontFamily: string | undefined;
|
|
11
11
|
};
|
|
12
12
|
H2: {
|
|
13
|
-
fontFamily: string;
|
|
13
|
+
fontFamily: string | undefined;
|
|
14
14
|
};
|
|
15
15
|
h2: {
|
|
16
|
-
fontFamily: string;
|
|
16
|
+
fontFamily: string | undefined;
|
|
17
17
|
};
|
|
18
18
|
H3: {
|
|
19
|
-
fontFamily: string;
|
|
19
|
+
fontFamily: string | undefined;
|
|
20
20
|
};
|
|
21
21
|
h3: {
|
|
22
|
-
fontFamily: string;
|
|
22
|
+
fontFamily: string | undefined;
|
|
23
23
|
};
|
|
24
24
|
Body: {
|
|
25
|
-
fontFamily: string;
|
|
25
|
+
fontFamily: string | undefined;
|
|
26
26
|
};
|
|
27
27
|
body1: {
|
|
28
|
-
fontFamily: string;
|
|
28
|
+
fontFamily: string | undefined;
|
|
29
29
|
};
|
|
30
30
|
Small: {
|
|
31
|
-
fontFamily: string;
|
|
31
|
+
fontFamily: string | undefined;
|
|
32
32
|
};
|
|
33
33
|
body2: {
|
|
34
|
-
fontFamily: string;
|
|
34
|
+
fontFamily: string | undefined;
|
|
35
35
|
};
|
|
36
36
|
Button: {
|
|
37
|
-
fontFamily: string;
|
|
37
|
+
fontFamily: string | undefined;
|
|
38
38
|
};
|
|
39
39
|
button: {
|
|
40
|
-
fontFamily: string;
|
|
40
|
+
fontFamily: string | undefined;
|
|
41
41
|
};
|
|
42
42
|
XSmall: {
|
|
43
|
-
fontFamily: string;
|
|
43
|
+
fontFamily: string | undefined;
|
|
44
44
|
};
|
|
45
45
|
caption: {
|
|
46
|
-
fontFamily: string;
|
|
46
|
+
fontFamily: string | undefined;
|
|
47
47
|
};
|
|
48
48
|
Paragraph: {
|
|
49
|
-
fontFamily: string;
|
|
49
|
+
fontFamily: string | undefined;
|
|
50
50
|
};
|
|
51
51
|
subtitle1: {
|
|
52
|
-
fontFamily: string;
|
|
52
|
+
fontFamily: string | undefined;
|
|
53
53
|
};
|
|
54
54
|
ParagraphSmall: {
|
|
55
|
-
fontFamily: string;
|
|
55
|
+
fontFamily: string | undefined;
|
|
56
56
|
};
|
|
57
57
|
subtitle2: {
|
|
58
|
-
fontFamily: string;
|
|
58
|
+
fontFamily: string | undefined;
|
|
59
59
|
};
|
|
60
60
|
Tiny: {
|
|
61
|
-
fontFamily: string;
|
|
61
|
+
fontFamily: string | undefined;
|
|
62
62
|
};
|
|
63
63
|
tiny: {
|
|
64
|
-
fontFamily: string;
|
|
64
|
+
fontFamily: string | undefined;
|
|
65
65
|
};
|
|
66
66
|
};
|
|
67
67
|
palette: {
|
|
@@ -30,7 +30,7 @@ import Ue from "@mui/material/AccordionSummary";
|
|
|
30
30
|
import Ve from "@mui/material/CardHeader";
|
|
31
31
|
import { u as Ye } from "../useDimensions-27p2evRx.mjs";
|
|
32
32
|
import { C as qe } from "../ConnectionsDrawer-ihxkAi1P.mjs";
|
|
33
|
-
import { R as Je } from "../RecurringSettings-
|
|
33
|
+
import { R as Je } from "../RecurringSettings-Dj29piAQ.mjs";
|
|
34
34
|
import Qe from "@mui/material/TextField";
|
|
35
35
|
import { u as Ce } from "../useScreenSize-B6JyS_Lj.mjs";
|
|
36
36
|
import { a as Ze } from "../Dialog-CWW597AF.mjs";
|
package/dist/goals/index.es.js
CHANGED
|
@@ -39,7 +39,7 @@ import ot from "@mui/material/ListItemIcon";
|
|
|
39
39
|
import at from "@mui/material/Checkbox";
|
|
40
40
|
import { A as fe } from "../ConnectDrawer-phFH6OHt.mjs";
|
|
41
41
|
import { u as rt, A as it } from "../AccountDetailsHeader-Eb3WvBGm.mjs";
|
|
42
|
-
import { A as st } from "../AccountDetailsContent-
|
|
42
|
+
import { A as st } from "../AccountDetailsContent-UxSEMBo_.mjs";
|
|
43
43
|
import we from "@mui/material/TextField";
|
|
44
44
|
import { M as lt, I as ct, O as dt } from "../OriginalBalanceAction-DepsKiJz.mjs";
|
|
45
45
|
import { getUnixTime as mt } from "date-fns/getUnixTime";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as s, B as e, C as o, c as t, b as i, I as d, M as n, a as C, d as c, N as I, V as M, Z as g, e as h } from "../ViewMoreMicroCard-
|
|
1
|
+
import { A as s, B as e, C as o, c as t, b as i, I as d, M as n, a as C, d as c, N as I, V as M, Z as g, e as h } from "../ViewMoreMicroCard-BPEzFZRG.mjs";
|
|
2
2
|
export {
|
|
3
3
|
s as AppStore,
|
|
4
4
|
e as BeatCard,
|
|
@@ -17,7 +17,7 @@ import P from "@mui/material/Button";
|
|
|
17
17
|
import W from "@mui/material/Stack";
|
|
18
18
|
import { L as w } from "../Loader-DUaFpDGv.mjs";
|
|
19
19
|
import $ from "@mui/material/IconButton";
|
|
20
|
-
import { N as H } from "../NotificationSettings-
|
|
20
|
+
import { N as H } from "../NotificationSettings-BJFyyZYE.mjs";
|
|
21
21
|
import { D as b } from "../Drawer-kEE73B87.mjs";
|
|
22
22
|
const yt = (e) => {
|
|
23
23
|
switch (e) {
|
|
@@ -8,8 +8,8 @@ import { startOfToday as le } from "date-fns/startOfToday";
|
|
|
8
8
|
import { subDays as de } from "date-fns/subDays";
|
|
9
9
|
import re from "@mui/material/Skeleton";
|
|
10
10
|
import c from "@mui/material/Stack";
|
|
11
|
-
import { R as He } from "../RecurringSettings-
|
|
12
|
-
import { M as An } from "../RecurringSettings-
|
|
11
|
+
import { R as He } from "../RecurringSettings-Dj29piAQ.mjs";
|
|
12
|
+
import { M as An } from "../RecurringSettings-Dj29piAQ.mjs";
|
|
13
13
|
import { addMonths as ze } from "date-fns/addMonths";
|
|
14
14
|
import { subMonths as Be } from "date-fns/subMonths";
|
|
15
15
|
import { isBefore as Ue } from "date-fns/isBefore";
|
|
@@ -41,8 +41,8 @@ import ct from "@mui/material/ListSubheader";
|
|
|
41
41
|
import lt from "@mui/material/ListItemAvatar";
|
|
42
42
|
import dt from "@mui/material/ListItemButton";
|
|
43
43
|
import ut from "@mui/material/ListItemText";
|
|
44
|
-
import { b as mt } from "../ManageIncome-
|
|
45
|
-
import { c as On, M as kn, S as Wn } from "../ManageIncome-
|
|
44
|
+
import { b as mt } from "../ManageIncome-DbsiKUoO.mjs";
|
|
45
|
+
import { c as On, M as kn, S as Wn } from "../ManageIncome-DbsiKUoO.mjs";
|
|
46
46
|
import { f as L } from "../NumberFormatting-CtWHhyBX.mjs";
|
|
47
47
|
import { D as Ae } from "../Drawer-kEE73B87.mjs";
|
|
48
48
|
import { b as N } from "../Localization-2MODESHW.mjs";
|
|
@@ -16,8 +16,8 @@ import F from "@mui/material/Box";
|
|
|
16
16
|
import Q from "@mui/material/Button";
|
|
17
17
|
import I from "@mui/material/TextField";
|
|
18
18
|
import { H3 as J, P as H, Text as x, Icon as M, ChevronRightIcon as xe } from "@mxenabled/mxui";
|
|
19
|
-
import { V as ve, a as Ce, N as G } from "../NotificationSettings-
|
|
20
|
-
import { A as Yt, B as qt, I as Qt } from "../NotificationSettings-
|
|
19
|
+
import { V as ve, a as Ce, N as G } from "../NotificationSettings-BJFyyZYE.mjs";
|
|
20
|
+
import { A as Yt, B as qt, I as Qt } from "../NotificationSettings-BJFyyZYE.mjs";
|
|
21
21
|
import { u as k, m as $, r as A, o as De, a as Z, k as ee } from "../hooks-DkUqN6JE.mjs";
|
|
22
22
|
import { u as L } from "../useScreenSize-B6JyS_Lj.mjs";
|
|
23
23
|
import { a as W } from "../Dialog-CWW597AF.mjs";
|