@mx-cartographer/experiences 6.26.3-alpha.sms9 → 6.26.4
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 +9 -0
- package/dist/goals/components/micro/GoalsMicroEmptyState.d.ts +1 -3
- package/dist/index.es.js +4860 -4806
- package/dist/index.es.js.map +1 -1
- package/dist/insights/store/BeatStore.d.ts +6 -1
- package/dist/transactions/stores/TransactionStore.d.ts +2 -0
- package/dist/trends/constants/TrendsInsights.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [6.26.4] - 09-01-2025
|
|
2
|
+
|
|
3
|
+
- **UPDATED** - Replaced zero state mini goals images with new design
|
|
4
|
+
|
|
5
|
+
## [6.26.3] - 08-28-2025
|
|
6
|
+
|
|
7
|
+
- **UPDATED** - BeatStore with getFilteredBeats
|
|
8
|
+
- **ADDED** - Beat template filter to TrendsInsights
|
|
9
|
+
|
|
1
10
|
## [6.26.2] - 08-28-2025
|
|
2
11
|
|
|
3
12
|
- **FIXED** - Spending widget when used individually
|
|
@@ -4,7 +4,5 @@ interface EmptyWidgetProps {
|
|
|
4
4
|
subText: string;
|
|
5
5
|
sx?: SxProps;
|
|
6
6
|
}
|
|
7
|
-
export declare const GoalsMicroEmptyState: (
|
|
8
|
-
displayName: string;
|
|
9
|
-
};
|
|
7
|
+
export declare const GoalsMicroEmptyState: ({ header, subText, sx }: EmptyWidgetProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
8
|
export {};
|