├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── app │ ├── _alert │ │ ├── alert.component.html │ │ ├── alert.component.ts │ │ ├── alert.model.ts │ │ ├── alert.module.ts │ │ ├── alert.service.ts │ │ └── index.ts │ ├── app.component.html │ ├── app.component.ts │ ├── app.module.ts │ ├── app.routing.ts │ ├── home │ │ ├── home.component.html │ │ ├── home.component.ts │ │ └── index.ts │ └── multi-alerts │ │ ├── index.ts │ │ ├── multi-alerts.component.html │ │ └── multi-alerts.component.ts ├── index.html ├── main.ts └── polyfills.ts ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/package.json -------------------------------------------------------------------------------- /src/app/_alert/alert.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/app/_alert/alert.component.html -------------------------------------------------------------------------------- /src/app/_alert/alert.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/app/_alert/alert.component.ts -------------------------------------------------------------------------------- /src/app/_alert/alert.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/app/_alert/alert.model.ts -------------------------------------------------------------------------------- /src/app/_alert/alert.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/app/_alert/alert.module.ts -------------------------------------------------------------------------------- /src/app/_alert/alert.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/app/_alert/alert.service.ts -------------------------------------------------------------------------------- /src/app/_alert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/app/_alert/index.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/app/app.routing.ts -------------------------------------------------------------------------------- /src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/app/home/home.component.html -------------------------------------------------------------------------------- /src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/app/home/home.component.ts -------------------------------------------------------------------------------- /src/app/home/index.ts: -------------------------------------------------------------------------------- 1 | export * from './home.component'; -------------------------------------------------------------------------------- /src/app/multi-alerts/index.ts: -------------------------------------------------------------------------------- 1 | export * from './multi-alerts.component'; 2 | -------------------------------------------------------------------------------- /src/app/multi-alerts/multi-alerts.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/app/multi-alerts/multi-alerts.component.html -------------------------------------------------------------------------------- /src/app/multi-alerts/multi-alerts.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/app/multi-alerts/multi-alerts.component.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-8-alert-notifications/HEAD/webpack.config.js --------------------------------------------------------------------------------