@mx-cartographer/experiences 6.26.33-alpha.mm0 → 6.26.34

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,8 +1,12 @@
1
- ## [6.26.33] - 09-12-2025
1
+ ## [6.26.34] - 09-15-2025
2
2
 
3
3
  - **ADDED** - Analytics events for new trends widget
4
4
  - **UPDATED** - `InsightsMicroWidget` with optional analytics metadata prop
5
5
 
6
+ ## [6.26.33] - 09-15-2025
7
+
8
+ - **FIXED** - Added Truncation/Bold to Notification Type Account Names.
9
+
6
10
  ## [6.26.32] - 09-12-2025
7
11
 
8
12
  - **FIXED** - Inconsistent totals in `Spending` widget when switching date ranges
@@ -4,10 +4,11 @@ interface ToggleButtonListItemProps {
4
4
  endIcon?: React.ReactNode;
5
5
  isChecked: boolean;
6
6
  isDisabled?: boolean;
7
+ isPrimaryTextBold?: boolean;
7
8
  onClick: () => void;
8
9
  onToggle: () => void;
9
10
  primaryText: string;
10
11
  secondaryText?: string;
11
12
  }
12
- export declare const ToggleButtonListItem: ({ avatar, endIcon, isChecked, isDisabled, onClick, onToggle, primaryText, secondaryText, }: ToggleButtonListItemProps) => import("react/jsx-runtime").JSX.Element;
13
+ export declare const ToggleButtonListItem: ({ avatar, endIcon, isChecked, isDisabled, isPrimaryTextBold, onClick, onToggle, primaryText, secondaryText, }: ToggleButtonListItemProps) => import("react/jsx-runtime").JSX.Element;
13
14
  export {};
@@ -103,12 +103,8 @@ export declare const ANALYTICS_EVENTS: {
103
103
  TRENDS_CLICK_FILTER: string;
104
104
  TRENDS_CLICK_GET_STARTED: string;
105
105
  TRENDS_CLICK_INSIGHT: string;
106
- TRENDS_CLICK_INSIGHT_CAROUSEL_LEFT: string;
107
- TRENDS_CLICK_INSIGHT_CAROUSEL_RIGHT: string;
108
- TRENDS_CLICK_INSIGHT_CAROUSEL_VIEW_MORE: string;
109
106
  TRENDS_CLICK_LEGEND: string;
110
107
  TRENDS_CLICK_LIST_ITEM: string;
111
- TRENDS_CLICK_TABLE_ROW: string;
112
108
  TRENDS_CLICK_TABLE_SORT: string;
113
109
  TRENDS_CLICK_TIME_WINDOW: string;
114
110
  TRENDS_CLICK_TOGGLE_VIEW: string;
package/dist/index.es.js CHANGED
@@ -338,12 +338,8 @@ const H_ = async (e, n, i = "1.0.0", a = "Experiences") => {
338
338
  TRENDS_CLICK_FILTER: "trends_click_filter",
339
339
  TRENDS_CLICK_GET_STARTED: "trends_click_getStarted",
340
340
  TRENDS_CLICK_INSIGHT: "trends_click_insight",
341
- TRENDS_CLICK_INSIGHT_CAROUSEL_LEFT: "trends_click_insightCarouselLeft",
342
- TRENDS_CLICK_INSIGHT_CAROUSEL_RIGHT: "trends_click_insightCarouselRight",
343
- TRENDS_CLICK_INSIGHT_CAROUSEL_VIEW_MORE: "trends_click_insightCarouselViewMore",
344
341
  TRENDS_CLICK_LEGEND: "trends_click_legend",
345
342
  TRENDS_CLICK_LIST_ITEM: "trends_click_listItem",
346
- TRENDS_CLICK_TABLE_ROW: "trends_click_tableRow",
347
343
  TRENDS_CLICK_TABLE_SORT: "trends_click_tableSort",
348
344
  TRENDS_CLICK_TIME_WINDOW: "trends_click_timeWindow",
349
345
  TRENDS_CLICK_TOGGLE_VIEW: "trends_click_toggleView",
@@ -4356,25 +4352,36 @@ const Nr = "connect_widget", Rr = "connections_widget", Zu = ({
4356
4352
  endIcon: n,
4357
4353
  isChecked: i,
4358
4354
  isDisabled: a = !1,
4359
- onClick: o,
4360
- onToggle: r,
4361
- primaryText: s,
4362
- secondaryText: c
4355
+ isPrimaryTextBold: o = !1,
4356
+ onClick: r,
4357
+ onToggle: s,
4358
+ primaryText: c,
4359
+ secondaryText: l
4363
4360
  }) => (
4364
4361
  //TODO: implement common/components/ListItemRow.tsx
4365
4362
  /* @__PURE__ */ t(
4366
4363
  j,
4367
4364
  {
4368
- secondaryAction: /* @__PURE__ */ t(ba, { checked: i, onChange: r }),
4365
+ secondaryAction: /* @__PURE__ */ t(ba, { checked: i, onChange: s }),
4369
4366
  sx: {
4370
4367
  "& .MuiListItemSecondaryAction-root": { right: n ? 64 : 24 },
4371
4368
  "& .MuiListItemButton-root": { pr: 24 }
4372
4369
  },
4373
- children: /* @__PURE__ */ d(pe, { onClick: a ? void 0 : () => o(), children: [
4370
+ children: /* @__PURE__ */ d(pe, { onClick: a ? void 0 : () => r(), children: [
4374
4371
  e && /* @__PURE__ */ t(He, { children: e }),
4375
- /* @__PURE__ */ t(se, { primaryTypographyProps: { fontWeight: 400 }, children: /* @__PURE__ */ t(b, { alignItems: "center", direction: "row", justifyContent: "space-between", children: /* @__PURE__ */ d(b, { children: [
4376
- /* @__PURE__ */ t(f, { variant: "body1", children: s }),
4377
- /* @__PURE__ */ t(f, { color: "text.secondary", variant: "caption", children: c })
4372
+ /* @__PURE__ */ t(se, { primaryTypographyProps: { fontWeight: 400 }, children: /* @__PURE__ */ t(b, { alignItems: "center", direction: "row", justifyContent: "space-between", children: /* @__PURE__ */ d(b, { sx: { width: "100%" }, children: [
4373
+ /* @__PURE__ */ t(
4374
+ f,
4375
+ {
4376
+ bold: o,
4377
+ sx: {
4378
+ mr: 80
4379
+ },
4380
+ variant: "body1",
4381
+ children: c
4382
+ }
4383
+ ),
4384
+ /* @__PURE__ */ t(f, { color: "text.secondary", variant: "caption", children: l })
4378
4385
  ] }) }) }),
4379
4386
  !a && n && /* @__PURE__ */ t(mt, { children: n })
4380
4387
  ] })
@@ -12318,10 +12325,10 @@ const Yt = (e) => /* @__PURE__ */ t(f, { fontWeight: 600, variant: "Small", chil
12318
12325
  hideFooter: !0,
12319
12326
  initialState: { sorting: { sortModel: u } },
12320
12327
  onRowClick: (y) => {
12321
- o(), s(H.TRENDS_CLICK_TABLE_ROW, { account_guid: y.row.guid });
12328
+ o(), s(H.DEBTS_CLICK_TABLE_ROW, { account_guid: y.row.guid });
12322
12329
  },
12323
12330
  onSortModelChange: (y) => {
12324
- _(y), s(H.TRENDS_CLICK_TABLE_SORT);
12331
+ _(y), s(H.DEBTS_CLICK_TABLE_SORT);
12325
12332
  },
12326
12333
  rows: p,
12327
12334
  slotProps: {
@@ -18123,6 +18130,7 @@ const sf = ({
18123
18130
  ) : void 0,
18124
18131
  endIcon: /* @__PURE__ */ t(Xe, {}),
18125
18132
  isChecked: n.is_enabled,
18133
+ isPrimaryTextBold: !0,
18126
18134
  onClick: () => l(!0),
18127
18135
  onToggle: () => e({
18128
18136
  ...n,