@mx-cartographer/experiences 7.4.8 → 7.4.9

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
+ ## [7.4.9] - 12-16-2025
2
+
3
+ - **UPDATED** - Budgets Widget to set alerts differently for a11y
4
+
1
5
  ## [7.4.8] - 12-16-2025
2
6
 
3
7
  - **FIXED** - Spending widget height and scroll behavior
@@ -1,7 +1,8 @@
1
1
  interface AddBudgetsProps {
2
+ onAddBudget?: () => void;
2
3
  onRecalculateBudgets?: () => void;
3
4
  }
4
- export declare const AddBudgets: (({ onRecalculateBudgets }: AddBudgetsProps) => import("react/jsx-runtime").JSX.Element) & {
5
+ export declare const AddBudgets: (({ onAddBudget, onRecalculateBudgets }: AddBudgetsProps) => import("react/jsx-runtime").JSX.Element) & {
5
6
  displayName: string;
6
7
  };
7
8
  export {};