@mx-cartographer/experiences 3.1.1-alpha.j3 → 3.1.1

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
+ ## [3.1.1] - 08-28-2024
2
+
3
+ - **FIXED** - Cashflow daterange inconsistencies
4
+
1
5
  ## [3.1.0] - 08-28-2024
2
6
 
3
7
  - **FIXED** - Refactored the ActivityList to use actual list components
@@ -0,0 +1,4 @@
1
+ import { default as React } from 'react';
2
+ import { WidgetProps } from '../common';
3
+
4
+ export declare const BubbleBudgetsWidget: React.FC<WidgetProps>;
@@ -1 +1,2 @@
1
+ export { BubbleBudgetsWidget } from './BubbleBudgetsWidget';
1
2
  export { default as BubbleBudgetsMiniWidget } from './BubbleBudgetsMiniWidget';
@@ -12,7 +12,7 @@ export interface AccountFilterProps {
12
12
  copy: AccountFilterCopy;
13
13
  onFilterClick: (selected: string[]) => void;
14
14
  onConnectAccountClick?: () => void;
15
- selectedAccountGuids: string[];
15
+ selectedAccounts: string[];
16
16
  showAccountNumbers: boolean;
17
17
  sx?: SxProps;
18
18
  variant?: 'outlined' | 'text';
@@ -11,5 +11,5 @@ export interface MappedAccount {
11
11
  export interface MappedOptions {
12
12
  [key: string]: boolean;
13
13
  }
14
- export declare const setupMappedSelectedOptions: (accounts: Account[], selectedAccountGuids: string[]) => MappedOptions;
14
+ export declare const setupMappedSelectedOptions: (accounts: Account[], selectedAccounts: string[]) => MappedOptions;
15
15
  export declare const setupMappedAccounts: (accounts: Account[]) => MappedAccounts;