src/lib/shared/interfaces/note-box-item.interface.ts
INoteBoxItem is used to define the structure of the note box items.
Example :import { INoteBoxItem } from '@talenra/inbox';noteBoxItems: INoteBoxItem = { identifier: 'casePriority', icon: 'info', iconColor: 'status-red', content: 'This is a note box item.', };
Properties |
| icon |
icon:
|
Type : string
|
|
The icon is limited by the talenra-icon library (https://gitlab.svanet.ch/talenra/talenra-workspace). |
| identifier |
identifier:
|
Type : string
|
|
The identifier is used to identify the note box item. |
| note |
note:
|
Type : string
|
|
The displayed note of the note box item. |