@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 +4 -0
- package/dist/budgets/BubbleBudgetsWidget.d.ts +4 -0
- package/dist/budgets/index.d.ts +1 -0
- package/dist/common/components/accountfilter/AccountFilter.d.ts +1 -1
- package/dist/common/utils/AccountFilter.d.ts +1 -1
- package/dist/index.es.js +3043 -3055
- package/dist/index.es.js.map +1 -1
- package/dist/spending/SpendingWidget.d.ts +1 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/budgets/index.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export interface AccountFilterProps {
|
|
|
12
12
|
copy: AccountFilterCopy;
|
|
13
13
|
onFilterClick: (selected: string[]) => void;
|
|
14
14
|
onConnectAccountClick?: () => void;
|
|
15
|
-
|
|
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[],
|
|
14
|
+
export declare const setupMappedSelectedOptions: (accounts: Account[], selectedAccounts: string[]) => MappedOptions;
|
|
15
15
|
export declare const setupMappedAccounts: (accounts: Account[]) => MappedAccounts;
|