summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-listing/templ-mapp-listing.component.ts
blob: 525e58128d9db352fcfff5edc92ab130f1659d01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { Component, OnInit, Output, EventEmitter } from '@angular/core';

@Component({
  selector: 'app-templ-mapp-listing',
  templateUrl: './templ-mapp-listing.component.html',
  styleUrls: ['./templ-mapp-listing.component.css']
})
export class TemplMappListingComponent implements OnInit {
  @Output() showCreationViewParentNotification = new EventEmitter<any>();

  constructor() { }

  ngOnInit() {
  }

  openCreationView() {
    this.showCreationViewParentNotification.emit('tell parent to open create views');
  }

}