Skip to content

Commit e4aea27

Browse files
committedJul 12, 2022
chore(combos): revert wrongly picked changes
1 parent ecbcdb0 commit e4aea27

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed
 

‎projects/igniteui-angular/src/lib/combo/combo.common.ts

-2
Original file line numberDiff line numberDiff line change
@@ -879,8 +879,6 @@ export abstract class IgxComboBaseDirective extends DisplayDensityBase implement
879879
public filteringOptions: IComboFilteringOptions = {
880880
caseSensitive: false
881881
};
882-
/** @hidden @internal */
883-
public activeDescendant = '';
884882

885883
protected _data = [];
886884
protected _value = '';

‎projects/igniteui-angular/src/lib/combo/combo.component.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,8 @@
4949
</ng-container>
5050
<div #dropdownItemContainer class="igx-combo__content" [style.overflow]="'hidden'"
5151
[style.maxHeight.px]="itemsMaxHeight" [igxDropDownItemNavigation]="dropdown" (focus)="dropdown.onFocus()"
52-
[tabindex]="dropdown.collapsed ? -1 : 0" [attr.id]="dropdown.id" aria-multiselectable="true"
53-
[attr.aria-activedescendant]="this.activeDescendant">
54-
<igx-combo-item [itemHeight]='itemHeight' *igxFor="let item of data
52+
[tabindex]="dropdown.collapsed ? -1 : 0" role="listbox" [attr.id]="dropdown.id">
53+
<igx-combo-item role="option" [itemHeight]='itemHeight' *igxFor="let item of data
5554
| comboFiltering:filterFunction:filterValue:filteringOptions:filterable:displayKey
5655
| comboGrouping:groupKey:valueKey:groupSortingDirection;
5756
index as rowIndex; containerSize: itemsMaxHeight; scrollOrientation: 'vertical'; itemSize: itemHeight"

0 commit comments

Comments
 (0)