feat(select): update popover interface to match MD spec on desktop, allow multiple values in popover interface (#23474)

resolves #23657
resolves #15500
resolves #12310
This commit is contained in:
Brandy Carney
2021-07-20 11:23:00 -04:00
committed by GitHub
parent be219a2814
commit 2c07a1566b
28 changed files with 889 additions and 92 deletions

View File

@ -5,5 +5,5 @@ export interface SelectPopoverOption {
disabled: boolean;
checked: boolean;
cssClass?: string | string[];
handler?: () => void;
handler?: (value: any) => boolean | void | {[key: string]: any};
}