@mx-cartographer/experiences 6.20.2-alpha.mega1 → 6.21.0

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,6 +1,8 @@
1
- ## [6.20.2] - 08-04-2025
1
+ ## [6.21.0] - 08-04-2025
2
2
 
3
- - **FIXED** - `Spending` and `Budgets` now update based on `selectedAccounts`
3
+ - **UPDATED** - MXUI to 1.3.0
4
+ - **REMOVED** - Icon font now that MXUI uses Material Symbol SVGs
5
+ - **FIXED** - Background color on status bars
4
6
 
5
7
  ## [6.20.1] - 08-04-2025
6
8
 
@@ -1,4 +1,3 @@
1
- import { default as React } from 'react';
2
1
  export type StatusBarData = {
3
2
  color: string;
4
3
  percentage: string;
@@ -7,5 +6,5 @@ interface StatusBarProps {
7
6
  data: StatusBarData[];
8
7
  height?: number;
9
8
  }
10
- declare const StatusBar: React.FC<StatusBarProps>;
9
+ declare const StatusBar: ({ data, height }: StatusBarProps) => import("react/jsx-runtime").JSX.Element;
11
10
  export default StatusBar;