fix(context menu): Implemented closing of context menu on outside click (#4627)

Co-authored-by: Ibrahim <93064150+IbrahimCSAE@users.noreply.github.com>
This commit is contained in:
Jaseel-trenser 2025-01-03 21:27:05 +05:30 committed by GitHub
parent b7fac6df3e
commit 6b851dfc12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,6 +36,7 @@ class UIDialogService extends PubSubService {
isDraggable = true,
showOverlay = false,
defaultPosition,
onClickOutside,
}) {
return this.serviceImplementation._create({
id,
@ -49,6 +50,7 @@ class UIDialogService extends PubSubService {
isDraggable,
showOverlay,
defaultPosition,
onClickOutside,
});
}