Skip to content
Snippets Groups Projects
text-field.component.ts 1.14 KiB
Newer Older
  • Learn to ignore specific revisions
  • import { Component } from '@angular/core';
    
    import { FormElementComponent } from '../canvas-element-component.directive';
    
    
    @Component({
      selector: 'app-text-field',
      template: `
    
        <input *ngIf="$any(elementModel).multiline === false" matInput
    
    rhenck's avatar
    rhenck committed
               placeholder="{{$any(elementModel).placeholder}}"
               [formControl]="formControl">
    
        <textarea *ngIf="$any(elementModel).multiline === true" matInput
    
    rhenck's avatar
    rhenck committed
                  placeholder="{{$any(elementModel).placeholder}}"
    
                  [formControl]="formControl"
    
    rhenck's avatar
    rhenck committed
                  [style.width.px]="elementModel.width"
                  [style.height.px]="elementModel.height"
                  [style.background-color]="elementModel.backgroundColor"
                  [style.color]="elementModel.fontColor"
                  [style.font-family]="elementModel.font"
                  [style.font-size.px]="elementModel.fontSize"
                  [style.font-weight]="elementModel.bold ? 'bold' : ''"
                  [style.font-style]="elementModel.italic ? 'italic' : ''"
                  [style.text-decoration]="elementModel.underline ? 'underline' : ''">
    
    export class TextFieldComponent extends FormElementComponent { }