@mx-cartographer/experiences 6.24.23 → 6.24.25

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,11 @@
1
+ ## [6.24.25] - 08-20-2025
2
+
3
+ - **ADDED** - Missing Data component for `Finstrong` widget
4
+
5
+ ## [6.24.24] - 08-20-2025
6
+
7
+ - **ADDED** - `FinStrong` | key indicators tab section Unit testcases added
8
+
1
9
  ## [6.24.23] - 08-20-2025
2
10
 
3
11
  - **ADDED** - Finstrong Financial Strength Graph and Credit Score Graph component | Dial Score Card Component
@@ -65,6 +65,8 @@ export interface FinstrongCopy {
65
65
  key_indicators_off_track: string;
66
66
  key_indicators_save: KeyIndicatorSave;
67
67
  key_indicators_spend: KeyIndicatorSpend;
68
+ missing_data_description: string;
69
+ missing_data_title: string;
68
70
  score_rubric: string;
69
71
  see_whats_possible: string;
70
72
  see_whats_possible_description: string;
@@ -0,0 +1,7 @@
1
+ interface MissingDataProps {
2
+ onClick: () => void;
3
+ }
4
+ declare const _default: (({ onClick }: MissingDataProps) => import("react/jsx-runtime").JSX.Element) & {
5
+ displayName: string;
6
+ };
7
+ export default _default;
package/dist/index.es.js CHANGED
@@ -13182,7 +13182,7 @@ const zp = ({ list: e, onClickItem: n }) => /* @__PURE__ */ t(O, { sx: { bgcolor
13182
13182
  stateTitle: u
13183
13183
  };
13184
13184
  }, { spendToIncomeRatio: r, spendFeeCount: s } = g.useMemo(() => {
13185
- const c = Math.round(e.spend_to_income_ratio * 100), d = a(c), _ = o(e.spending_fee_transaction_count);
13185
+ const c = e.spend_to_income_ratio !== null ? Math.round(e.spend_to_income_ratio * 100) : null, d = a(c), _ = o(e.spending_fee_transaction_count);
13186
13186
  return { spendToIncomeRatio: d, spendFeeCount: _ };
13187
13187
  }, [
13188
13188
  e.spend_to_income_ratio,
@@ -13233,7 +13233,7 @@ const zp = ({ list: e, onClickItem: n }) => /* @__PURE__ */ t(O, { sx: { bgcolor
13233
13233
  stateTitle: m
13234
13234
  };
13235
13235
  }, { daysOfCashOnHand: r, emergencySavings: s } = g.useMemo(() => {
13236
- const c = Math.round(e.months_of_cash_on_hand * 30), d = a(c), _ = Math.round(e.emergency_savings_on_hand), u = o(_);
13236
+ const c = e.months_of_cash_on_hand !== null ? Math.round(e.months_of_cash_on_hand * 30) : null, d = a(c), _ = e.emergency_savings_on_hand !== null ? Math.round(e.emergency_savings_on_hand) : null, u = o(_);
13237
13237
  return { daysOfCashOnHand: d, emergencySavings: u };
13238
13238
  }, [
13239
13239
  e.months_of_cash_on_hand,
@@ -13287,7 +13287,7 @@ const zp = ({ list: e, onClickItem: n }) => /* @__PURE__ */ t(O, { sx: { bgcolor
13287
13287
  stateTitle: p
13288
13288
  };
13289
13289
  }, { manageDebtStatus: s, creditScoreStatus: c } = g.useMemo(() => {
13290
- const d = Math.round(e.debt_to_income_ratio * 100), _ = o(d), u = r(a.credit_score || null);
13290
+ const d = e.debt_to_income_ratio !== null ? Math.round(e.debt_to_income_ratio * 100) : null, _ = o(d), u = r(a.credit_score || null);
13291
13291
  return {
13292
13292
  manageDebtStatus: _,
13293
13293
  creditScoreStatus: u