Skip to content

Commit

Permalink
work for textarea component enhancement - update angular component
Browse files Browse the repository at this point in the history
  • Loading branch information
OlgaLarina committed Sep 12, 2024
1 parent 0efada2 commit cbe37c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<ng-template #template>
<textarea
[readonly]="model.isReadOnlyAttr"
[disabled]="model.isDisabledAttr"
Expand All @@ -21,3 +22,4 @@
[attr.aria-errormessage]="model.ariaErrormessage"
[style.resize]="model.question.resizeStyle"
#contentElement></textarea>
</ng-template>
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import { EmbeddedViewContentComponent } from "../../embedded-view-content.compon

@Component({
selector: "sv-text-area",
templateUrl: "./text-area.component.html"
templateUrl: "./text-area.component.html",
styleUrls: ["../../hide-host.scss"]
})
export class TextAreaComponent extends EmbeddedViewContentComponent {
@Input() model!: TextAreaModel;
Expand Down

0 comments on commit cbe37c3

Please sign in to comment.