Files
ISA-Frontend/libs/shell/notifications/project.json
Lorenz Hilpert daf79d55a5 feat(shell-notifications): add notification display component
Add feature library for rendering grouped notifications with:
- Grouped notification display with collapsible sections
- Unread/read status indication
- Relative timestamps via date-fns
- Action buttons supporting navigation and callback types
2025-12-03 21:16:33 +01:00

21 lines
497 B
JSON

{
"name": "shell-notifications",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/shell/notifications/src",
"prefix": "shell",
"projectType": "library",
"tags": [],
"targets": {
"test": {
"executor": "@nx/vite:test",
"outputs": ["{options.reportsDirectory}"],
"options": {
"reportsDirectory": "../../../coverage/libs/shell/notifications"
}
},
"lint": {
"executor": "@nx/eslint:lint"
}
}
}