paragraph.component.ts 605 B

123456789101112131415161718
  1. import { Component, Input } from '@angular/core';
  2. import { Paragraph } from '../../models/evt-models';
  3. import { register } from '../../services/component-register.service';
  4. import { EditionlevelSusceptible, Highlightable, TextFlowSusceptible } from '../components-mixins';
  5. export interface ParagraphComponent extends EditionlevelSusceptible, Highlightable, TextFlowSusceptible { }
  6. @Component({
  7. selector: 'evt-paragraph',
  8. templateUrl: './paragraph.component.html',
  9. styleUrls: ['./paragraph.component.scss'],
  10. })
  11. @register(Paragraph)
  12. export class ParagraphComponent {
  13. @Input() data: Paragraph;
  14. }