@mx-cartographer/experiences 3.1.2 → 3.1.3-alpha.j2

Sign up to get free protection for your applications and to get access to all the features.
@@ -12,7 +12,7 @@ export interface AccountFilterProps {
12
12
  copy: AccountFilterCopy;
13
13
  onFilterClick: (selected: string[]) => void;
14
14
  onConnectAccountClick?: () => void;
15
- selectedAccounts: string[];
15
+ selectedAccountGuids: 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[], selectedAccounts: string[]) => MappedOptions;
14
+ export declare const setupMappedSelectedOptions: (accounts: Account[], selectedAccountGuids: string[]) => MappedOptions;
15
15
  export declare const setupMappedAccounts: (accounts: Account[]) => MappedAccounts;