1 import { Component, Input } from '@angular/core';
2 import { Icons } from '../../enum/icons.enum';
5 selector: 'cd-inline-message',
6 templateUrl: './inline-message.component.html',
7 styleUrl: './inline-message.component.scss'
9 export class InlineMessageComponent {
10 // collapsible when true will show read more/read less button
13 // title to show in the message
18 // callback function to execute onclose
20 onClose?: () => void = () => {};
27 this.isDismissed = true;
34 this.isTruncated = !this.isTruncated;