igniteui-angular 19.2.26 → 19.2.27
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.
|
@@ -15120,7 +15120,7 @@ class IgxFocusTrapDirective {
|
|
|
15120
15120
|
event.preventDefault();
|
|
15121
15121
|
}
|
|
15122
15122
|
getFocusableElements(element) {
|
|
15123
|
-
return Array.from(element.querySelectorAll('a[href], button, input, textarea, select, details,[tabindex]:not([tabindex="-1"])')).filter(el => !el.hasAttribute('disabled') && !el.
|
|
15123
|
+
return Array.from(element.querySelectorAll('a[href], button, input, textarea, select, details,[tabindex]:not([tabindex="-1"])')).filter(el => !el.hasAttribute('disabled') && !el.closest('[aria-hidden="true"]'));
|
|
15124
15124
|
}
|
|
15125
15125
|
getFocusedElement() {
|
|
15126
15126
|
let activeElement = typeof document !== 'undefined' && document
|