Skip to content

Commit

Permalink
Fix visual tests for Angular
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtelnov committed Dec 8, 2024
1 parent c9409c0 commit 9fa6f12
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<label [class]="model.getSwatchCss()" [style]="model.getSwatchStyle()">
<svg [iconName]="model.cssClasses.swatchIcon" [size]="'auto'" sv-ng-svg-icon></svg>
<input type="color" [disabled]="model.isInputReadOnly" [class]="model.cssClasses.colorInput"
[value]="model.renderedColorValue" (change)="model.onColorInputChange($event)" tabindex="-1"/>
[value]="model.renderedColorValue" (change)="model.onColorInputChange($event)" tabindex="-1" />
</label>
<input autocomplete="off" [disabled]="model.isInputReadOnly" [attr.id]="model.inputId"
[placeholder]="model.renderedPlaceholder" [attr.aria-required]="model.ariaRequired"
[attr.placeholder]="model.renderedPlaceholder" [attr.aria-required]="model.ariaRequired"
[attr.aria-label]="model.ariaLabel" [attr.aria-invalid]="model.ariaInvalid"
[attr.aria-describedby]="model.ariaDescribedBy" (change)="model.onChange($event)" (keyup)="model.onKeyUp($event)"
(blur)="model.onBlur($event)" (beforeinput)="model.onBeforeInput($event)" [value]="model.renderedValue"
Expand Down

0 comments on commit 9fa6f12

Please sign in to comment.