igniteui-angular 19.2.33 → 19.2.34
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.
|
@@ -59763,7 +59763,7 @@ class IgxGridHeaderGroupComponent {
|
|
|
59763
59763
|
* @hidden
|
|
59764
59764
|
*/
|
|
59765
59765
|
get ariaHidden() {
|
|
59766
|
-
return this.grid.hasColumnGroups && (this.column.hidden || this.grid.navigation.activeNode
|
|
59766
|
+
return this.grid.hasColumnGroups && (this.column.hidden || this.grid.navigation.activeNode?.row !== -1);
|
|
59767
59767
|
}
|
|
59768
59768
|
/**
|
|
59769
59769
|
* Gets whether the header group belongs to a column that is filtered.
|
|
@@ -61973,7 +61973,7 @@ class IgxGridHeaderRowComponent {
|
|
|
61973
61973
|
* @internal
|
|
61974
61974
|
*/
|
|
61975
61975
|
get isLeafHeaderAriaHidden() {
|
|
61976
|
-
return this.grid.navigation.activeNode
|
|
61976
|
+
return this.grid.navigation.activeNode?.row === -1;
|
|
61977
61977
|
}
|
|
61978
61978
|
get headerForOf() {
|
|
61979
61979
|
return this.headerContainer;
|