Skip to content

Commit

Permalink
work for the #6058 (updated snap)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-kurmanov committed May 17, 2023
1 parent 6cb220b commit 370bc5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/survey-angular-ui/src/questions/text.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
(change)="model.onChange($event)" [value]="value" [disabled]="model.isInputReadOnly" name="user" [type]="model.inputType" [id]="model.inputId" [attr.placeholder]="model.renderedPlaceholder || ''"
(keyup)="model.onKeyUp($event)" (keydown)="model.onKeyDown($event)" (blur)="model.onBlur($event)" (focus)="model.onFocus($event)" (compositionupdate)="model.onCompositionUpdate($event)"
[attr.size] = "model.renderedInputSize" [attr.maxlength]= "model.getMaxLength()" [attr.min]="model.renderedMin"
[attr.max]="model.renderedMax" [attr.step]="model.renderedStep" [attr.max]="model.renderedMax" [attr.a11y_input_aria-required]="model.a11y_input_ariaRequired"
[attr.a11y_input_aria-label]="model.a11y_input_ariaLabel" [attr.a11y_input_aria-labelledby]="model.a11y_input_ariaLabelledBy" [attr.a11y_input_aria-invalid]="model.a11y_input_ariaInvalid" [attr.a11y_input_aria-describedby]="model.a11y_input_ariaDescribedBy" [attr.autocomplete]="model.autocomplete" #contentElement/>
[attr.max]="model.renderedMax" [attr.step]="model.renderedStep" [attr.max]="model.renderedMax" [attr.aria-required]="model.a11y_input_ariaRequired"
[attr.aria-label]="model.a11y_input_ariaLabel" [attr.aria-labelledby]="model.a11y_input_ariaLabelledBy" [attr.aria-invalid]="model.a11y_input_ariaInvalid" [attr.aria-describedby]="model.a11y_input_ariaDescribedBy" [attr.autocomplete]="model.autocomplete" #contentElement/>
<sv-ng-character-counter *ngIf="model.getMaxLength()"
[counter]="model.characterCounter"
[remainingCharacterCounter]="model.cssClasses.remainingCharacterCounter">
Expand Down

0 comments on commit 370bc5d

Please sign in to comment.