@mx-cartographer/experiences 9.3.5 → 9.3.6

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 CHANGED
@@ -1,3 +1,7 @@
1
+ ## [9.3.6] - 08-12-2026
2
+
3
+ - **ADDED** - Creating the new TransparentOverdraftV2 insight
4
+
1
5
  ## [9.3.5] - 08-12-2026
2
6
 
3
7
  - **FIXED** - Transaction detail view showed transfer/credit amounts (e.g. an account-to-account transfer deposit) as an unsigned, default-colored amount because the header keyed off `isIncome` (true only for the Income category) while the list keyed off `transaction_type`; the detail view now uses `transaction_type === CREDIT` so credits render as `+$Amount` in success green, consistent with the transactions list (MEW-3703)
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ import { CommonBeatProps } from '../../../types/CommonBeat';
3
+ export interface TransparentOverdraftV2Props extends CommonBeatProps {
4
+ accountName: string;
5
+ formattedProjectedBalance: string;
6
+ projectedBalanceLabel: string;
7
+ }
8
+ export declare const TransparentOverdraftV2: React.FC<TransparentOverdraftV2Props>;
@@ -0,0 +1,50 @@
1
+ import { InsightButton as i } from "../../shared/InsightsCard/InsightButton.es.js";
2
+ import { BeatCardMUI as s } from "../../shared/InsightsCard/BeatCardMUI.es.js";
3
+ import { TransparentOverdraftV2Body as c } from "./TransparentOverdraftV2Body.es.js";
4
+ import "react";
5
+ import n from "@mui/material/Stack";
6
+ import { Text as f } from "@mxenabled/mxui";
7
+ import { jsx as r, jsxs as h } from "react/jsx-runtime";
8
+ var T = ({ accountName: m, beat: t, buttonProps: e, formattedProjectedBalance: d, isMini: o, projectedBalanceLabel: p, ...a }) => /* @__PURE__ */ r(s, {
9
+ ...a,
10
+ beat: t,
11
+ button: /* @__PURE__ */ h(n, {
12
+ sx: { gap: 8 },
13
+ children: [/* @__PURE__ */ r(i, {
14
+ ...e,
15
+ beat: t
16
+ }), /* @__PURE__ */ r(i, {
17
+ ...e,
18
+ beat: t,
19
+ hide: !t.supporting_action,
20
+ primary: !1
21
+ })]
22
+ }),
23
+ header: {
24
+ ...a.header,
25
+ subHeader: /* @__PURE__ */ r(n, {
26
+ alignItems: "center",
27
+ direction: "row",
28
+ sx: {
29
+ gap: 4,
30
+ mt: 4
31
+ },
32
+ children: /* @__PURE__ */ r(f, {
33
+ sx: { color: "text.secondary" },
34
+ variant: "body2",
35
+ children: m
36
+ })
37
+ })
38
+ },
39
+ isMini: o,
40
+ children: /* @__PURE__ */ r(c, {
41
+ formattedProjectedBalance: d,
42
+ isMini: o ?? !1,
43
+ projectedBalanceLabel: p
44
+ })
45
+ });
46
+ export {
47
+ T as TransparentOverdraftV2
48
+ };
49
+
50
+ //# sourceMappingURL=TransparentOverdraftV2.es.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TransparentOverdraftV2.es.js","names":[],"sources":["../../../../../src/insights/components/insights/TransparentOverdraftV2/TransparentOverdraftV2.tsx"],"sourcesContent":["import React from 'react'\n\nimport { Text } from '@mxenabled/mxui'\n\nimport Stack from '@mui/material/Stack'\n\nimport { CommonBeatProps } from '../../../types/CommonBeat'\nimport { BeatCardMUI } from '../../shared/InsightsCard/BeatCardMUI'\nimport { InsightButton } from '../../shared/InsightsCard/InsightButton'\n\nimport { TransparentOverdraftV2Body } from './TransparentOverdraftV2Body'\n\nexport interface TransparentOverdraftV2Props extends CommonBeatProps {\n accountName: string\n formattedProjectedBalance: string\n projectedBalanceLabel: string\n}\n\nexport const TransparentOverdraftV2: React.FC<TransparentOverdraftV2Props> = ({\n accountName,\n beat,\n buttonProps,\n formattedProjectedBalance,\n isMini,\n projectedBalanceLabel,\n ...restProps\n}) => {\n return (\n <BeatCardMUI\n {...restProps}\n beat={beat}\n button={\n <Stack sx={{ gap: 8 }}>\n <InsightButton {...buttonProps} beat={beat} />\n <InsightButton\n {...buttonProps}\n beat={beat}\n hide={!beat.supporting_action}\n primary={false}\n />\n </Stack>\n }\n header={{\n ...restProps.header,\n subHeader: (\n <Stack alignItems=\"center\" direction=\"row\" sx={{ gap: 4, mt: 4 }}>\n {/* Remove InstitutionLogo until the V2 payload carries institution_guid */}\n <Text sx={{ color: 'text.secondary' }} variant=\"body2\">\n {accountName}\n </Text>\n </Stack>\n ),\n }}\n isMini={isMini}\n >\n <TransparentOverdraftV2Body\n formattedProjectedBalance={formattedProjectedBalance}\n isMini={isMini ?? false}\n projectedBalanceLabel={projectedBalanceLabel}\n />\n </BeatCardMUI>\n )\n}\n"],"mappings":";;;;;;;AAkBA,IAAa,IAAA,CAAiE,EAC5E,aAAA,GACA,MAAA,GACA,aAAA,GACA,2BAAA,GACA,QAAA,GACA,uBAAA,GACA,GAAG,EAAA,MAGD,gBAAA,EAAC,GAAD;AAAA,EACE,GAAI;AAAA,EACE,MAAA;AAAA,EACN,QACE,gBAAA,EAAC,GAAD;AAAA,IAAO,IAAI,EAAE,KAAK,EAAE;AAAA,IAApB,UAAA,CACE,gBAAA,EAAC,GAAD;AAAA,MAAe,GAAI;AAAA,MAAmB,MAAA;AAAA,IAAO,CAAA,GAC7C,gBAAA,EAAC,GAAD;AAAA,MACE,GAAI;AAAA,MACE,MAAA;AAAA,MACN,MAAM,CAAC,EAAK;AAAA,MACZ,SAAS;AAAA,IACV,CAAA,CACI;AAAA;EAET,QAAQ;AAAA,IACN,GAAG,EAAU;AAAA,IACb,WACE,gBAAA,EAAC,GAAD;AAAA,MAAO,YAAW;AAAA,MAAS,WAAU;AAAA,MAAM,IAAI;AAAA,QAAE,KAAK;AAAA,QAAG,IAAI;AAAA,MAAE;AAAA,MAE7D,UAAA,gBAAA,EAAC,GAAD;AAAA,QAAM,IAAI,EAAE,OAAO,iBAAiB;AAAA,QAAG,SAAQ;AAAA,QAC5C,UAAA;AAAA,MACG,CAAA;AAAA,IACD,CAAA;AAAA,EAEX;AAAA,EACQ,QAAA;AAAA,EAER,UAAA,gBAAA,EAAC,GAAD;AAAA,IAC6B,2BAAA;AAAA,IAC3B,QAAQ,KAAU;AAAA,IACK,uBAAA;AAAA,EACxB,CAAA;AACU,CAAA"}
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ interface TransparentOverdraftV2BodyProps {
3
+ formattedProjectedBalance: string;
4
+ isMini: boolean;
5
+ projectedBalanceLabel: string;
6
+ }
7
+ export declare const TransparentOverdraftV2Body: React.FC<TransparentOverdraftV2BodyProps>;
8
+ export {};
@@ -0,0 +1,68 @@
1
+ import "react";
2
+ import e from "@mui/material/Stack";
3
+ import { P as c, Text as m } from "@mxenabled/mxui";
4
+ import { Icon as s } from "@mxenabled/mx-icons";
5
+ import { jsx as r, jsxs as n } from "react/jsx-runtime";
6
+ import d from "@mui/material/Card";
7
+ var y = ({ formattedProjectedBalance: i, isMini: o = !1, projectedBalanceLabel: a }) => {
8
+ const t = {
9
+ boxContainer: {
10
+ bgcolor: "warning.light",
11
+ marginBottom: o ? 0 : 24,
12
+ py: 16,
13
+ px: 24,
14
+ width: "100%"
15
+ },
16
+ card: {
17
+ alignItems: "center",
18
+ borderRadius: 2,
19
+ display: "flex",
20
+ flexDirection: "column",
21
+ justifyContent: "center",
22
+ p: 16,
23
+ width: "100%"
24
+ }
25
+ };
26
+ return /* @__PURE__ */ r(e, {
27
+ sx: t.boxContainer,
28
+ children: /* @__PURE__ */ n(d, {
29
+ sx: {
30
+ ...t.card,
31
+ bgcolor: "background.paper"
32
+ },
33
+ children: [/* @__PURE__ */ r(m, {
34
+ component: "span",
35
+ sx: {
36
+ color: "text.primary",
37
+ fontWeight: 700,
38
+ mb: 4
39
+ },
40
+ variant: o ? "h2" : "h1",
41
+ children: i
42
+ }), /* @__PURE__ */ n(e, {
43
+ alignItems: "center",
44
+ direction: "row",
45
+ sx: { gap: 4 },
46
+ children: [/* @__PURE__ */ r(s, {
47
+ "aria-hidden": "true",
48
+ fill: !0,
49
+ name: "error",
50
+ size: 16,
51
+ sx: { color: "warning.main" }
52
+ }), /* @__PURE__ */ r(c, {
53
+ sx: {
54
+ color: "text.secondary",
55
+ fontWeight: 400
56
+ },
57
+ variant: "body2",
58
+ children: a
59
+ })]
60
+ })]
61
+ })
62
+ });
63
+ };
64
+ export {
65
+ y as TransparentOverdraftV2Body
66
+ };
67
+
68
+ //# sourceMappingURL=TransparentOverdraftV2Body.es.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TransparentOverdraftV2Body.es.js","names":[],"sources":["../../../../../src/insights/components/insights/TransparentOverdraftV2/TransparentOverdraftV2Body.tsx"],"sourcesContent":["import React from 'react'\n\nimport { Icon } from '@mxenabled/mx-icons'\nimport { P, Text } from '@mxenabled/mxui'\n\nimport Card from '@mui/material/Card'\nimport Stack from '@mui/material/Stack'\n\ninterface TransparentOverdraftV2BodyProps {\n formattedProjectedBalance: string\n isMini: boolean\n projectedBalanceLabel: string\n}\n\nexport const TransparentOverdraftV2Body: React.FC<TransparentOverdraftV2BodyProps> = ({\n formattedProjectedBalance,\n isMini = false,\n projectedBalanceLabel,\n}) => {\n const styles = {\n boxContainer: {\n bgcolor: 'warning.light',\n marginBottom: isMini ? 0 : 24,\n py: 16,\n px: 24,\n width: '100%',\n },\n card: {\n alignItems: 'center',\n borderRadius: 2,\n display: 'flex',\n flexDirection: 'column',\n justifyContent: 'center',\n p: 16,\n width: '100%',\n },\n }\n\n return (\n <Stack sx={styles.boxContainer}>\n <Card\n sx={{\n ...styles.card,\n bgcolor: 'background.paper',\n }}\n >\n <Text\n component=\"span\"\n sx={{ color: 'text.primary', fontWeight: 700, mb: 4 }}\n variant={isMini ? 'h2' : 'h1'}\n >\n {formattedProjectedBalance}\n </Text>\n\n <Stack alignItems=\"center\" direction=\"row\" sx={{ gap: 4 }}>\n <Icon\n aria-hidden=\"true\"\n fill={true}\n name=\"error\"\n size={16}\n sx={{ color: 'warning.main' }}\n />\n <P sx={{ color: 'text.secondary', fontWeight: 400 }} variant=\"body2\">\n {projectedBalanceLabel}\n </P>\n </Stack>\n </Card>\n </Stack>\n )\n}\n"],"mappings":";;;;;;AAcA,IAAa,IAAA,CAAyE,EACpF,2BAAA,GACA,QAAA,IAAS,IACT,uBAAA,EAAA,MACI;AACJ,QAAM,IAAS;AAAA,IACb,cAAc;AAAA,MACZ,SAAS;AAAA,MACT,cAAc,IAAS,IAAI;AAAA,MAC3B,IAAI;AAAA,MACJ,IAAI;AAAA,MACJ,OAAO;AAAA,IACT;AAAA,IACA,MAAM;AAAA,MACJ,YAAY;AAAA,MACZ,cAAc;AAAA,MACd,SAAS;AAAA,MACT,eAAe;AAAA,MACf,gBAAgB;AAAA,MAChB,GAAG;AAAA,MACH,OAAO;AAAA,IACT;AAAA,EACF;AAEA,SACE,gBAAA,EAAC,GAAD;AAAA,IAAO,IAAI,EAAO;AAAA,IAChB,UAAA,gBAAA,EAAC,GAAD;AAAA,MACE,IAAI;AAAA,QACF,GAAG,EAAO;AAAA,QACV,SAAS;AAAA,MACX;AAAA,MAJF,UAAA,CAME,gBAAA,EAAC,GAAD;AAAA,QACE,WAAU;AAAA,QACV,IAAI;AAAA,UAAE,OAAO;AAAA,UAAgB,YAAY;AAAA,UAAK,IAAI;AAAA,QAAE;AAAA,QACpD,SAAS,IAAS,OAAO;AAAA,QAExB,UAAA;AAAA,MACG,CAAA,GAEN,gBAAA,EAAC,GAAD;AAAA,QAAO,YAAW;AAAA,QAAS,WAAU;AAAA,QAAM,IAAI,EAAE,KAAK,EAAE;AAAA,QAAxD,UAAA,CACE,gBAAA,EAAC,GAAD;AAAA,UACE,eAAY;AAAA,UACZ,MAAM;AAAA,UACN,MAAK;AAAA,UACL,MAAM;AAAA,UACN,IAAI,EAAE,OAAO,eAAe;AAAA,QAC7B,CAAA,GACD,gBAAA,EAAC,GAAD;AAAA,UAAG,IAAI;AAAA,YAAE,OAAO;AAAA,YAAkB,YAAY;AAAA,UAAI;AAAA,UAAG,SAAQ;AAAA,UAC1D,UAAA;AAAA,QACA,CAAA,CACE;AAAA,MACH,CAAA,CAAA;AAAA;EACD,CAAA;AAEX"}
@@ -0,0 +1 @@
1
+ export * from './TransparentOverdraftV2';
@@ -19,6 +19,7 @@ export * from './P2pCategorization';
19
19
  export * from './SavingsAccountBalancesSummary';
20
20
  export * from './SetUpDirectDeposit';
21
21
  export * from './SwitchDirectDeposit';
22
+ export * from './TransparentOverdraftV2';
22
23
  export * from './UnifiedDeposit';
23
24
  export * from './WeeklyNoSpendDays';
24
25
  export * from './MarketingHub';
@@ -17,7 +17,7 @@ import { MiniInsightCard as U } from "./components/shared/MiniInsightCard.es.js"
17
17
  import { MenuAction as H } from "./components/shared/MenuAction.es.js";
18
18
  import w from "./components/shared/P2P/P2PMultipleCategorization.es.js";
19
19
  import V from "./components/shared/SaveEnoughToLiveOnBottomSection.es.js";
20
- import O from "./components/shared/SaveEnoughToLiveOnTopSection.es.js";
20
+ import z from "./components/shared/SaveEnoughToLiveOnTopSection.es.js";
21
21
  import W from "./components/shared/StatusIndicator.es.js";
22
22
  import R from "./components/shared/TransactionCard.es.js";
23
23
  import { DirectDeposit as X } from "./components/shared/DirectDeposit/DirectDeposit.es.js";
@@ -43,7 +43,7 @@ import { LinedCardZeroState as ko } from "./components/shared/ZeroState/LinedCar
43
43
  import { ErrorCard as Eo } from "./components/shared/ErrorCard/ErrorCard.es.js";
44
44
  import { FeedbackHeader as Lo } from "./components/shared/GenericFeedback/FeedbackHeader.es.js";
45
45
  import { FeedbackButtons as xo } from "./components/shared/GenericFeedback/FeedbackButtons.es.js";
46
- import { FeedbackDescription as zo } from "./components/shared/GenericFeedback/FeedbackDescription.es.js";
46
+ import { FeedbackDescription as Oo } from "./components/shared/GenericFeedback/FeedbackDescription.es.js";
47
47
  import { FeedbackOptions as No } from "./components/shared/GenericFeedback/FeedbackOptions.es.js";
48
48
  import { BeatFeedbackText as Go } from "./components/shared/GenericFeedback/FeedbackText.es.js";
49
49
  import { AccountDiscoverability as jo } from "./components/insights/AccountDiscoverability/AccountDiscoverability.es.js";
@@ -70,7 +70,7 @@ import { MonthlyEmergencyFundReviewBody as kr } from "./components/insights/Mont
70
70
  import { LastMonthsContributionSection as Er } from "./components/insights/MonthlyEmergencyFundReview/LastMonthsContributionSection.es.js";
71
71
  import { ProjectedCompletionSection as Lr } from "./components/insights/MonthlyEmergencyFundReview/ProjectedCompletionSection.es.js";
72
72
  import { TotalSavedSection as xr } from "./components/insights/MonthlyEmergencyFundReview/TotalSection.es.js";
73
- import { MonthlySavingsToIncomeComparison as zr } from "./components/insights/MonthlySavingsToIncomeComparison/MonthlySavingsToIncomeComparison.es.js";
73
+ import { MonthlySavingsToIncomeComparison as Or } from "./components/insights/MonthlySavingsToIncomeComparison/MonthlySavingsToIncomeComparison.es.js";
74
74
  import { MonthlySpendingComparisonV2 as Nr } from "./components/insights/MonthlySpendingComparisonV2/MonthlySpendingComparisonV2.es.js";
75
75
  import { MonthlySpendToIncomeComparisonV2 as Gr } from "./components/insights/MonthlySpendToIncomeComparisonV2/MonthlySpendToIncomeComparisonV2.es.js";
76
76
  import { P2pCategorization as jr } from "./components/insights/P2pCategorization/P2pCategorization.es.js";
@@ -81,14 +81,15 @@ import { SetUpDirectDepositBody as _r } from "./components/insights/SetUpDirectD
81
81
  import { AccountBox as ot } from "./components/insights/SwitchDirectDeposit/AccountBox.es.js";
82
82
  import { SwitchDirectDepositMainContainer as tt } from "./components/insights/SwitchDirectDeposit/SwitchDirectDepositMainContainer.es.js";
83
83
  import { SwitchDirectDepositBody as mt } from "./components/insights/SwitchDirectDeposit/SwitchDirectDepositBody.es.js";
84
- import { UnifiedDeposit as at } from "./components/insights/UnifiedDeposit/UnifiedDeposit.es.js";
85
- import { WeeklyNoSpendDays as nt } from "./components/insights/WeeklyNoSpendDays/WeeklyNoSpendDays.es.js";
86
- import { UserFeedback as dt } from "./components/insights/UserFeedback/UserFeedback.es.js";
87
- import { DirectDepositDeepLink as st } from "./components/shared/DeepLinks/DirectDeposit/DirectDepositDeepLink.es.js";
88
- import { Header as lt } from "./components/feed/Header.es.js";
89
- import { P2PCategorizationSingleAccount as ut } from "./components/shared/P2PCategorizationSingleAccount/P2PCategorizationSingleAccount.es.js";
90
- import { DrillDownCalculation as Bt, variants as gt } from "./components/shared/DrillDownCalculation/DrillDownCalculation.es.js";
91
- import { SaveAnExtra100 as yt } from "./components/shared/SaveAnExtra100/SaveAnExtra100.es.js";
84
+ import { TransparentOverdraftV2 as at } from "./components/insights/TransparentOverdraftV2/TransparentOverdraftV2.es.js";
85
+ import { UnifiedDeposit as nt } from "./components/insights/UnifiedDeposit/UnifiedDeposit.es.js";
86
+ import { WeeklyNoSpendDays as dt } from "./components/insights/WeeklyNoSpendDays/WeeklyNoSpendDays.es.js";
87
+ import { UserFeedback as st } from "./components/insights/UserFeedback/UserFeedback.es.js";
88
+ import { DirectDepositDeepLink as lt } from "./components/shared/DeepLinks/DirectDeposit/DirectDepositDeepLink.es.js";
89
+ import { Header as ut } from "./components/feed/Header.es.js";
90
+ import { P2PCategorizationSingleAccount as Bt } from "./components/shared/P2PCategorizationSingleAccount/P2PCategorizationSingleAccount.es.js";
91
+ import { DrillDownCalculation as ht, variants as yt } from "./components/shared/DrillDownCalculation/DrillDownCalculation.es.js";
92
+ import { SaveAnExtra100 as Tt } from "./components/shared/SaveAnExtra100/SaveAnExtra100.es.js";
92
93
  export {
93
94
  ot as AccountBox,
94
95
  jo as AccountDiscoverability,
@@ -122,7 +123,7 @@ export {
122
123
  sr as CustomTransaction,
123
124
  Mo as Description,
124
125
  X as DirectDeposit,
125
- st as DirectDepositDeepLink,
126
+ lt as DirectDepositDeepLink,
126
127
  q as DirectDepositSubHeader,
127
128
  ur as DiscoveredAccountsBody,
128
129
  T as DiscoveredAccountsConnect,
@@ -130,7 +131,7 @@ export {
130
131
  hr as DiscoveredAccountsMiniInsight,
131
132
  f as DoubleBarChart,
132
133
  c as DoubleBarChartMXUI,
133
- Bt as DrillDownCalculation,
134
+ ht as DrillDownCalculation,
134
135
  vo as EmbeddedCard,
135
136
  C as EmptyBarChart,
136
137
  Eo as ErrorCard,
@@ -138,11 +139,11 @@ export {
138
139
  vr as FederalBankHolidayMUI,
139
140
  xo as FeedbackButtons,
140
141
  Ao as FeedbackCard,
141
- zo as FeedbackDescription,
142
+ Oo as FeedbackDescription,
142
143
  Lo as FeedbackHeader,
143
144
  No as FeedbackOptions,
144
145
  K as FullFeedBodyHeader,
145
- lt as Header,
146
+ ut as Header,
146
147
  Fo as InsightButton,
147
148
  Er as LastMonthsContributionSection,
148
149
  Y as LeftBox,
@@ -153,11 +154,11 @@ export {
153
154
  U as MiniInsightCard,
154
155
  Fr as MonthlyDebtToIncomeComparisonV2,
155
156
  kr as MonthlyEmergencyFundReviewBody,
156
- zr as MonthlySavingsToIncomeComparison,
157
+ Or as MonthlySavingsToIncomeComparison,
157
158
  Gr as MonthlySpendToIncomeComparisonV2,
158
159
  Nr as MonthlySpendingComparisonV2,
159
160
  Ar as Offer,
160
- ut as P2PCategorizationSingleAccount,
161
+ Bt as P2PCategorizationSingleAccount,
161
162
  w as P2PMultipleCategorization,
162
163
  jr as P2pCategorization,
163
164
  Zr as P2pCategorizationMultipleTransactions,
@@ -167,9 +168,9 @@ export {
167
168
  I as PulseGraidentBox,
168
169
  b as PulseProgressBar,
169
170
  ro as RightBox,
170
- yt as SaveAnExtra100,
171
+ Tt as SaveAnExtra100,
171
172
  V as SaveEnoughToLiveOnBottomSection,
172
- O as SaveEnoughToLiveOnTopSection,
173
+ z as SaveEnoughToLiveOnTopSection,
173
174
  Qr as SavingsAccountBalancesSummary,
174
175
  _r as SetUpDirectDepositBody,
175
176
  lr as SharedDeposit,
@@ -178,8 +179,9 @@ export {
178
179
  tt as SwitchDirectDepositMainContainer,
179
180
  xr as TotalSavedSection,
180
181
  R as TransactionCard,
181
- at as UnifiedDeposit,
182
- dt as UserFeedback,
183
- nt as WeeklyNoSpendDays,
184
- gt as variants
182
+ at as TransparentOverdraftV2,
183
+ nt as UnifiedDeposit,
184
+ st as UserFeedback,
185
+ dt as WeeklyNoSpendDays,
186
+ yt as variants
185
187
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "9.3.5",
3
+ "version": "9.3.6",
4
4
  "description": "Library containing experience widgets",
5
5
  "author": "MX",
6
6
  "license": "MIT",