Skip to content

Commit

Permalink
#7305 - fixed angular
Browse files Browse the repository at this point in the history
  • Loading branch information
novikov82 committed Nov 9, 2023
1 parent 798a975 commit 83ac12e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@
[attr.role]="dropdownModel.filterStringEnabled ? model.ariaRole : null"
[attr.id]="model.getInputId()"
[attr.inputmode]="dropdownModel.inputMode"
[readonly]="dropdownModel.filterReadOnly"
[attr.tabindex]="dropdownModel.noTabIndex ? null : -1"
[attr.disabled]="model.isInputReadOnly ? true : null"
[attr.aria-controls]="dropdownModel.listElementId"
[attr.aria-label]="model.a11y_input_ariaLabel"
[attr.aria-labelledby]="model.a11y_input_ariaLabelledBy"
[attr.aria-expanded]="model.ariaExpanded"
[attr.aria-activedescendant]="dropdownModel.ariaActivedescendant"
[attr.placeholder]="dropdownModel.placeholderRendered" [attr.readonly]="!dropdownModel.searchEnabled ? true : null"
[attr.placeholder]="dropdownModel.placeholderRendered"
[attr.readonly]="dropdownModel.filterReadOnly ? true : null"
(change)="inputChange($event)" (blur)="blur($event)" (focus)="focus($event)"/>
</div>
<div *ngIf="(model.allowClear && model.cssClasses.cleanButtonIconId)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@
[attr.id]="question.getInputId()"
[class]="question.cssClasses.filterStringInput"
[attr.inputmode]="model.inputMode"
[readonly]="model.filterReadOnly"
[attr.role]="model.filterStringEnabled ? question.ariaRole : null"
[attr.readonly]="!model.searchEnabled ? true : null"
[attr.readonly]="model.filterReadOnly ? true : null"
[attr.disabled]="question.isInputReadOnly ? true : null"
[attr.size]="!model.inputStringRendered ? 1 : null"
[attr.aria-label]="question.a11y_input_ariaLabel"
Expand Down

0 comments on commit 83ac12e

Please sign in to comment.