feat(select): add event for when overlay is dismissed (#24400)

This commit is contained in:
Amanda Smith
2021-12-14 09:33:53 -06:00
committed by Sean Perkins
parent aacb58a322
commit d50740029e
7 changed files with 38 additions and 7 deletions

View File

@ -6159,6 +6159,10 @@ declare namespace LocalJSX {
* Emitted when the value has changed.
*/
"onIonChange"?: (event: CustomEvent<SelectChangeEventDetail>) => void;
/**
* Emitted when the overlay is dismissed.
*/
"onIonDismiss"?: (event: CustomEvent<void>) => void;
/**
* Emitted when the select has focus.
*/