From 174326ab3e5e83bc42b52f34a0bcda2a0e3e58ea Mon Sep 17 00:00:00 2001 From: Art Date: Fri, 17 Sep 2021 13:47:22 +0300 Subject: [PATCH] 128.1. Creating notification module - ng generate module (#16 Section 18: Notification) --- support-portal-frontend/package-lock.json | 15 +++++++++++++++ support-portal-frontend/package.json | 1 + .../src/app/notification/notification.module.ts | 10 ++++++++++ 3 files changed, 26 insertions(+) create mode 100644 support-portal-frontend/src/app/notification/notification.module.ts diff --git a/support-portal-frontend/package-lock.json b/support-portal-frontend/package-lock.json index 5f49008..9b385d4 100644 --- a/support-portal-frontend/package-lock.json +++ b/support-portal-frontend/package-lock.json @@ -2171,6 +2171,21 @@ "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", "dev": true }, + "angular-notifier": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/angular-notifier/-/angular-notifier-9.1.0.tgz", + "integrity": "sha512-K8D8UljdC4P4TfjYB0v39Zs3WjgvPR7Vvp3yzGhcW4I8gXIqkz4xQSbqJbIZABCGEWdKqPyAN48wl7yg8Q3Urg==", + "requires": { + "tslib": "2.0.x" + }, + "dependencies": { + "tslib": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", + "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==" + } + } + }, "ansi-colors": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", diff --git a/support-portal-frontend/package.json b/support-portal-frontend/package.json index 33dd458..77f9609 100644 --- a/support-portal-frontend/package.json +++ b/support-portal-frontend/package.json @@ -19,6 +19,7 @@ "@angular/platform-browser-dynamic": "~12.2.0", "@angular/router": "~12.2.0", "@auth0/angular-jwt": "^5.0.2", + "angular-notifier": "^9.1.0", "rxjs": "~6.6.0", "tslib": "^2.3.0", "zone.js": "~0.11.4" diff --git a/support-portal-frontend/src/app/notification/notification.module.ts b/support-portal-frontend/src/app/notification/notification.module.ts new file mode 100644 index 0000000..287328a --- /dev/null +++ b/support-portal-frontend/src/app/notification/notification.module.ts @@ -0,0 +1,10 @@ +import {NgModule} from '@angular/core'; +import {CommonModule} from '@angular/common'; + +@NgModule({ + declarations: [], + imports: [ + CommonModule + ] +}) +export class NotificationModule { }