monkey-style-guide-v2 0.0.61 → 0.0.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2402,7 +2402,7 @@ class MonkeyAutocompleteComponent {
|
|
|
2402
2402
|
}
|
|
2403
2403
|
_onBlur(event) {
|
|
2404
2404
|
const next = event?.relatedTarget;
|
|
2405
|
-
if (next && this.containerWrapper
|
|
2405
|
+
if (next && this.containerWrapper?.nativeElement?.contains(next)) {
|
|
2406
2406
|
return;
|
|
2407
2407
|
}
|
|
2408
2408
|
this.focused = false;
|