@mx-cartographer/experiences 6.24.24 → 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,7 @@
1
+ ## [6.24.25] - 08-20-2025
2
+
3
+ - **ADDED** - Missing Data component for `Finstrong` widget
4
+
1
5
  ## [6.24.24] - 08-20-2025
2
6
 
3
7
  - **ADDED** - `FinStrong` | key indicators tab section Unit testcases added
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "6.24.24",
3
+ "version": "6.24.25",
4
4
  "description": "Library containing experience widgets",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",