fix #4620 Overlaypanel: Overlay panel doesnot close on escape button click

This commit is contained in:
akshayantony55 2023-10-16 00:56:56 +05:30
parent c0bf815e92
commit 02cbc1e98d
3 changed files with 31 additions and 0 deletions

View file

@ -163,6 +163,11 @@ export interface OverlayPanelProps {
* @defaultValue false
*/
unstyled?: boolean;
/**
* Specifies if pressing escape key should hide the dialog.
* @defaultValue true
*/
closeOnEscape?: boolean | undefined;
}
/**