import { Component, Input } from '@angular/core'; import { NotificationType } from './notification.type'; @Component({ selector: 'swui-notification-container', template: `
`, host: { class: 'swui-notification-container' } }) export class NotificationContainerComponent { @Input() notifications: any; get htmlNotifications() { return this.notifications.filter(n => { return n.type === NotificationType.html; }); } }