@progress/kendo-angular-notification 3.0.3 → 4.0.0-next.202202241714
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +1 -1
- package/NOTICE.txt +119 -79
- package/README.md +1 -1
- package/bundles/kendo-angular-notification.umd.js +5 -0
- package/{dist/es/models/notification-ref.js → esm2015/kendo-angular-notification.js} +4 -0
- package/esm2015/localization/localized-messages.directive.js +38 -0
- package/{dist/es → esm2015}/main.js +2 -0
- package/{dist/es2015 → esm2015}/models/animation.js +1 -0
- package/{dist/es2015 → esm2015}/models/notification-ref.js +1 -0
- package/{dist/es2015 → esm2015}/models/notification-settings.js +0 -0
- package/{dist/es → esm2015}/models/position.js +1 -0
- package/{dist/es2015 → esm2015}/models/type.js +1 -0
- package/{dist/es2015 → esm2015}/notification.component.js +85 -73
- package/{dist/es2015 → esm2015}/notification.container.component.js +25 -27
- package/{dist/es → esm2015}/notification.module.js +16 -16
- package/{dist/es2015 → esm2015}/package-metadata.js +1 -1
- package/{dist/es2015 → esm2015}/services/notification.service.js +14 -12
- package/{dist/es2015 → esm2015}/utils/animations.js +0 -0
- package/{dist/fesm2015/index.js → fesm2015/kendo-angular-notification.js} +170 -146
- package/{dist/es/models/animation.js → kendo-angular-notification.d.ts} +5 -0
- package/{dist/es2015/localization → localization}/localized-messages.directive.d.ts +3 -0
- package/{dist/es2015/main.d.ts → main.d.ts} +1 -0
- package/{dist/es2015/models → models}/animation.d.ts +0 -0
- package/{dist/es2015/models → models}/notification-ref.d.ts +0 -0
- package/{dist/es2015/models → models}/notification-settings.d.ts +0 -0
- package/{dist/es2015/models → models}/position.d.ts +0 -0
- package/{dist/es2015/models → models}/type.d.ts +0 -0
- package/{dist/es2015/notification.component.d.ts → notification.component.d.ts} +5 -2
- package/{dist/es2015/notification.container.component.d.ts → notification.container.component.d.ts} +3 -1
- package/{dist/es2015/notification.module.d.ts → notification.module.d.ts} +8 -0
- package/{dist/es2015/package-metadata.d.ts → package-metadata.d.ts} +0 -0
- package/package.json +33 -93
- package/schematics/ngAdd/index.js +5 -2
- package/schematics/ngAdd/index.js.map +1 -1
- package/{dist/es2015/services → services}/notification.service.d.ts +4 -1
- package/{dist/es2015/utils → utils}/animations.d.ts +0 -0
- package/dist/cdn/js/kendo-angular-notification.js +0 -20
- package/dist/cdn/main.js +0 -5
- package/dist/es/index.js +0 -10
- package/dist/es/localization/localized-messages.directive.js +0 -38
- package/dist/es/models/notification-settings.js +0 -54
- package/dist/es/models/type.js +0 -4
- package/dist/es/notification.component.js +0 -222
- package/dist/es/notification.container.component.js +0 -154
- package/dist/es/package-metadata.js +0 -15
- package/dist/es/services/notification.service.js +0 -135
- package/dist/es/utils/animations.js +0 -41
- package/dist/es2015/index.d.ts +0 -10
- package/dist/es2015/index.js +0 -10
- package/dist/es2015/index.metadata.json +0 -1
- package/dist/es2015/localization/localized-messages.directive.js +0 -34
- package/dist/es2015/main.js +0 -8
- package/dist/es2015/models/position.js +0 -4
- package/dist/es2015/notification.module.js +0 -53
- package/dist/fesm5/index.js +0 -677
- package/dist/npm/index.js +0 -15
- package/dist/npm/localization/localized-messages.directive.js +0 -40
- package/dist/npm/main.js +0 -15
- package/dist/npm/models/animation.js +0 -6
- package/dist/npm/models/notification-ref.js +0 -6
- package/dist/npm/models/notification-settings.js +0 -56
- package/dist/npm/models/position.js +0 -6
- package/dist/npm/models/type.js +0 -6
- package/dist/npm/notification.component.js +0 -224
- package/dist/npm/notification.container.component.js +0 -156
- package/dist/npm/notification.module.js +0 -58
- package/dist/npm/package-metadata.js +0 -17
- package/dist/npm/services/notification.service.js +0 -137
- package/dist/npm/utils/animations.js +0 -47
- package/dist/systemjs/kendo-angular-notification.js +0 -5
|
@@ -2,19 +2,22 @@
|
|
|
2
2
|
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import
|
|
6
|
-
import { Component, EventEmitter, HostBinding, Input, TemplateRef, ChangeDetectorRef, ViewChild, ViewContainerRef, ElementRef, Renderer2 } from '@angular/core';
|
|
7
|
-
import { AnimationBuilder } from '@angular/animations';
|
|
5
|
+
import { Component, EventEmitter, HostBinding, Input, ViewChild, ViewContainerRef } from '@angular/core';
|
|
8
6
|
import { take } from 'rxjs/operators';
|
|
9
7
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
10
8
|
import { packageMetadata } from './package-metadata';
|
|
11
9
|
import { fadeAnimation, fadeCloseAnimation, slideAnimation, slideCloseAnimation } from './utils/animations';
|
|
12
10
|
import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
import * as i1 from "@angular/animations";
|
|
13
|
+
import * as i2 from "@progress/kendo-angular-l10n";
|
|
14
|
+
import * as i3 from "./localization/localized-messages.directive";
|
|
15
|
+
import * as i4 from "@angular/common";
|
|
13
16
|
/**
|
|
14
17
|
* @hidden
|
|
15
18
|
*
|
|
16
19
|
*/
|
|
17
|
-
|
|
20
|
+
export class NotificationComponent {
|
|
18
21
|
constructor(cdr, element, renderer, builder, localizationService) {
|
|
19
22
|
this.cdr = cdr;
|
|
20
23
|
this.element = element;
|
|
@@ -137,60 +140,48 @@ let NotificationComponent = class NotificationComponent {
|
|
|
137
140
|
fadeAnimation(duration, onclose) {
|
|
138
141
|
return onclose ? fadeCloseAnimation(duration) : fadeAnimation(duration);
|
|
139
142
|
}
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
],
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
]
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
]
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
],
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
HostBinding('attr.dir'),
|
|
183
|
-
tslib_1.__metadata("design:type", String)
|
|
184
|
-
], NotificationComponent.prototype, "direction", void 0);
|
|
185
|
-
tslib_1.__decorate([
|
|
186
|
-
HostBinding('class.k-notification-container'),
|
|
187
|
-
tslib_1.__metadata("design:type", Boolean),
|
|
188
|
-
tslib_1.__metadata("design:paramtypes", [])
|
|
189
|
-
], NotificationComponent.prototype, "containerClass", null);
|
|
190
|
-
NotificationComponent = tslib_1.__decorate([
|
|
191
|
-
Component({
|
|
192
|
-
selector: 'kendo-notification',
|
|
193
|
-
template: `
|
|
143
|
+
}
|
|
144
|
+
NotificationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: NotificationComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.AnimationBuilder }, { token: i2.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
145
|
+
NotificationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: NotificationComponent, selector: "kendo-notification", inputs: { templateRef: "templateRef", templateString: "templateString", width: "width", height: "height", cssClass: "cssClass", hideAfter: "hideAfter", closable: "closable", type: "type", animation: "animation" }, host: { properties: { "attr.dir": "this.direction", "class.k-notification-container": "this.containerClass" } }, providers: [
|
|
146
|
+
LocalizationService,
|
|
147
|
+
{
|
|
148
|
+
provide: L10N_PREFIX,
|
|
149
|
+
useValue: 'kendo.notification'
|
|
150
|
+
}
|
|
151
|
+
], viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: `
|
|
152
|
+
<ng-container kendoNotificationLocalizedMessages
|
|
153
|
+
i18n-closeTitle="kendo.notification.closeTitle|The title of the close button"
|
|
154
|
+
closeTitle="Close"
|
|
155
|
+
>
|
|
156
|
+
</ng-container>
|
|
157
|
+
<div class="k-widget k-notification {{ notificationClasses() }}"
|
|
158
|
+
[ngClass]="cssClass"
|
|
159
|
+
[style.height.px]="height"
|
|
160
|
+
[style.width.px]="width">
|
|
161
|
+
<div class="k-notification-wrap k-hstack">
|
|
162
|
+
<span *ngIf="type && type.icon && type.style !== 'none'" class="k-icon" [ngClass]="typeIconClass()"></span>
|
|
163
|
+
|
|
164
|
+
<div class="k-notification-content">
|
|
165
|
+
<ng-template
|
|
166
|
+
[ngIf]="templateRef"
|
|
167
|
+
[ngTemplateOutlet]="templateRef">
|
|
168
|
+
</ng-template>
|
|
169
|
+
<ng-template
|
|
170
|
+
[ngIf]="templateString">
|
|
171
|
+
{{ templateString }}
|
|
172
|
+
</ng-template>
|
|
173
|
+
<ng-container #container></ng-container>
|
|
174
|
+
</div>
|
|
175
|
+
|
|
176
|
+
<a *ngIf="closable" class="k-icon k-i-close" [attr.title]="closeButtonTitle" (click)="onCloseClick()"></a>
|
|
177
|
+
</div>
|
|
178
|
+
</div>
|
|
179
|
+
`, isInline: true, directives: [{ type: i3.LocalizedMessagesDirective, selector: "[kendoNotificationLocalizedMessages]", inputs: ["closeTitle"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
180
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: NotificationComponent, decorators: [{
|
|
181
|
+
type: Component,
|
|
182
|
+
args: [{
|
|
183
|
+
selector: 'kendo-notification',
|
|
184
|
+
template: `
|
|
194
185
|
<ng-container kendoNotificationLocalizedMessages
|
|
195
186
|
i18n-closeTitle="kendo.notification.closeTitle|The title of the close button"
|
|
196
187
|
closeTitle="Close"
|
|
@@ -219,18 +210,39 @@ NotificationComponent = tslib_1.__decorate([
|
|
|
219
210
|
</div>
|
|
220
211
|
</div>
|
|
221
212
|
`,
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
],
|
|
236
|
-
|
|
213
|
+
providers: [
|
|
214
|
+
LocalizationService,
|
|
215
|
+
{
|
|
216
|
+
provide: L10N_PREFIX,
|
|
217
|
+
useValue: 'kendo.notification'
|
|
218
|
+
}
|
|
219
|
+
]
|
|
220
|
+
}]
|
|
221
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1.AnimationBuilder }, { type: i2.LocalizationService }]; }, propDecorators: { container: [{
|
|
222
|
+
type: ViewChild,
|
|
223
|
+
args: ['container', { read: ViewContainerRef, static: true }]
|
|
224
|
+
}], templateRef: [{
|
|
225
|
+
type: Input
|
|
226
|
+
}], templateString: [{
|
|
227
|
+
type: Input
|
|
228
|
+
}], width: [{
|
|
229
|
+
type: Input
|
|
230
|
+
}], height: [{
|
|
231
|
+
type: Input
|
|
232
|
+
}], cssClass: [{
|
|
233
|
+
type: Input
|
|
234
|
+
}], hideAfter: [{
|
|
235
|
+
type: Input
|
|
236
|
+
}], closable: [{
|
|
237
|
+
type: Input
|
|
238
|
+
}], type: [{
|
|
239
|
+
type: Input
|
|
240
|
+
}], animation: [{
|
|
241
|
+
type: Input
|
|
242
|
+
}], direction: [{
|
|
243
|
+
type: HostBinding,
|
|
244
|
+
args: ['attr.dir']
|
|
245
|
+
}], containerClass: [{
|
|
246
|
+
type: HostBinding,
|
|
247
|
+
args: ['class.k-notification-container']
|
|
248
|
+
}] } });
|
|
@@ -2,14 +2,13 @@
|
|
|
2
2
|
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import
|
|
6
|
-
import { Component, Input, ElementRef, ComponentFactoryResolver, ViewContainerRef, Renderer2, ViewChild, TemplateRef } from '@angular/core';
|
|
5
|
+
import { Component, Input, ViewContainerRef, ViewChild, TemplateRef } from '@angular/core';
|
|
7
6
|
import { NotificationComponent } from './notification.component';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* @hidden
|
|
10
|
-
*
|
|
11
10
|
*/
|
|
12
|
-
|
|
11
|
+
export class NotificationContainerComponent {
|
|
13
12
|
constructor(element, renderer, resolver) {
|
|
14
13
|
this.element = element;
|
|
15
14
|
this.renderer = renderer;
|
|
@@ -127,30 +126,29 @@ let NotificationContainerComponent = class NotificationContainerComponent {
|
|
|
127
126
|
const vertical = positionLayout.vertical[position.vertical];
|
|
128
127
|
return Object.assign({}, horizontal, vertical);
|
|
129
128
|
}
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
], NotificationContainerComponent.prototype, "id", void 0);
|
|
143
|
-
NotificationContainerComponent = tslib_1.__decorate([
|
|
144
|
-
Component({
|
|
145
|
-
selector: 'kendo-notification-container',
|
|
146
|
-
template: `
|
|
129
|
+
}
|
|
130
|
+
NotificationContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: NotificationContainerComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Component });
|
|
131
|
+
NotificationContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: NotificationContainerComponent, selector: "kendo-notification-container", inputs: { id: "id" }, viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true, read: ViewContainerRef, static: true }, { propertyName: "group", first: true, predicate: ["group"], descendants: true, static: true }], ngImport: i0, template: `
|
|
132
|
+
<div #group class="k-notification-group">
|
|
133
|
+
<ng-container #container></ng-container>
|
|
134
|
+
</div>
|
|
135
|
+
`, isInline: true });
|
|
136
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: NotificationContainerComponent, decorators: [{
|
|
137
|
+
type: Component,
|
|
138
|
+
args: [{
|
|
139
|
+
selector: 'kendo-notification-container',
|
|
140
|
+
template: `
|
|
147
141
|
<div #group class="k-notification-group">
|
|
148
142
|
<ng-container #container></ng-container>
|
|
149
143
|
</div>
|
|
150
144
|
`
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
],
|
|
156
|
-
|
|
145
|
+
}]
|
|
146
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ComponentFactoryResolver }]; }, propDecorators: { container: [{
|
|
147
|
+
type: ViewChild,
|
|
148
|
+
args: ['container', { read: ViewContainerRef, static: true }]
|
|
149
|
+
}], group: [{
|
|
150
|
+
type: ViewChild,
|
|
151
|
+
args: ['group', { static: true }]
|
|
152
|
+
}], id: [{
|
|
153
|
+
type: Input
|
|
154
|
+
}] } });
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as tslib_1 from "tslib";
|
|
6
5
|
import { NgModule } from '@angular/core';
|
|
7
6
|
import { CommonModule } from '@angular/common';
|
|
8
7
|
import { NotificationService } from './services/notification.service';
|
|
9
8
|
import { NotificationComponent } from './notification.component';
|
|
10
9
|
import { NotificationContainerComponent } from './notification.container.component';
|
|
11
10
|
import { LocalizedMessagesDirective } from './localization/localized-messages.directive';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
12
|
/**
|
|
13
13
|
* Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
|
|
14
14
|
* definition for the Notification component.
|
|
@@ -39,18 +39,18 @@ import { LocalizedMessagesDirective } from './localization/localized-messages.di
|
|
|
39
39
|
* platformBrowserDynamic().bootstrapModule(AppModule);
|
|
40
40
|
* ```
|
|
41
41
|
*/
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
}
|
|
56
|
-
|
|
42
|
+
export class NotificationModule {
|
|
43
|
+
}
|
|
44
|
+
NotificationModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: NotificationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
45
|
+
NotificationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: NotificationModule, declarations: [NotificationComponent, NotificationContainerComponent, LocalizedMessagesDirective], imports: [CommonModule], exports: [NotificationComponent, NotificationContainerComponent] });
|
|
46
|
+
NotificationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: NotificationModule, providers: [NotificationService], imports: [[CommonModule]] });
|
|
47
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: NotificationModule, decorators: [{
|
|
48
|
+
type: NgModule,
|
|
49
|
+
args: [{
|
|
50
|
+
declarations: [NotificationComponent, NotificationContainerComponent, LocalizedMessagesDirective],
|
|
51
|
+
entryComponents: [NotificationComponent, NotificationContainerComponent],
|
|
52
|
+
imports: [CommonModule],
|
|
53
|
+
exports: [NotificationComponent, NotificationContainerComponent],
|
|
54
|
+
providers: [NotificationService]
|
|
55
|
+
}]
|
|
56
|
+
}] });
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-notification',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
12
|
+
publishDate: 1645722791,
|
|
13
13
|
version: '',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
15
15
|
};
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import
|
|
6
|
-
import { Injectable, ComponentFactoryResolver, ApplicationRef, Injector, InjectionToken, ElementRef, Inject, Optional } from '@angular/core';
|
|
5
|
+
import { Injectable, ApplicationRef, InjectionToken, Inject, Optional } from '@angular/core';
|
|
7
6
|
import { NotificationContainerComponent } from '../notification.container.component';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Used to inject the Notification container. If not provided, the first root component of
|
|
10
10
|
* the application is used.
|
|
@@ -52,7 +52,7 @@ export const NOTIFICATION_CONTAINER = new InjectionToken('Notification Container
|
|
|
52
52
|
* @export
|
|
53
53
|
* @class NotificationService
|
|
54
54
|
*/
|
|
55
|
-
|
|
55
|
+
export class NotificationService {
|
|
56
56
|
/**
|
|
57
57
|
* @hidden
|
|
58
58
|
*/
|
|
@@ -123,12 +123,14 @@ let NotificationService = class NotificationService {
|
|
|
123
123
|
}
|
|
124
124
|
return container;
|
|
125
125
|
}
|
|
126
|
-
}
|
|
127
|
-
NotificationService =
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
Injector,
|
|
132
|
-
|
|
133
|
-
]
|
|
134
|
-
|
|
126
|
+
}
|
|
127
|
+
NotificationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: NotificationService, deps: [{ token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: NOTIFICATION_CONTAINER, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
128
|
+
NotificationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: NotificationService });
|
|
129
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: NotificationService, decorators: [{
|
|
130
|
+
type: Injectable
|
|
131
|
+
}], ctorParameters: function () { return [{ type: i0.ComponentFactoryResolver }, { type: i0.Injector }, { type: i0.ElementRef, decorators: [{
|
|
132
|
+
type: Inject,
|
|
133
|
+
args: [NOTIFICATION_CONTAINER]
|
|
134
|
+
}, {
|
|
135
|
+
type: Optional
|
|
136
|
+
}] }]; } });
|
|
File without changes
|