Skip to content
Snippets Groups Projects
interactive-group-element.component.html 569 B
Newer Older
  • Learn to ignore specific revisions
  • <aspect-button
        *ngIf="elementModel.type === 'button'"
        #elementComponent
        [elementModel]="elementModel | cast: ButtonElement"
    
        (navigateTo)="navigateTo($event)">
    
    </aspect-button>
    <aspect-frame
        *ngIf="elementModel.type === 'frame'"
        #elementComponent
        [elementModel]="elementModel | cast: FrameElement">
    </aspect-frame>
    <aspect-image
        *ngIf="elementModel.type === 'image'"
        #elementComponent
        [elementModel]="elementModel | cast: ImageElement"
    
        (elementValueChanged)="unitStateService.changeElementCodeValue($event)">