@progress/kendo-angular-notification 25.0.0-develop.2 → 25.0.0-develop.20
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.
|
@@ -12,7 +12,7 @@ import { validatePackage } from '@progress/kendo-licensing';
|
|
|
12
12
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
13
13
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
14
14
|
import { xIcon, infoCircleIcon, xCircleIcon, exclamationCircleIcon, checkIcon } from '@progress/kendo-svg-icons';
|
|
15
|
-
import { guid, KENDO_WEBMCP_HOST } from '@progress/kendo-angular-common';
|
|
15
|
+
import { guid, KENDO_WEBMCP_HOST, provideComponentName } from '@progress/kendo-angular-common';
|
|
16
16
|
import { IconWrapperComponent, IconsService } from '@progress/kendo-angular-icons';
|
|
17
17
|
|
|
18
18
|
/**
|
|
@@ -132,8 +132,8 @@ const packageMetadata = {
|
|
|
132
132
|
productName: 'Kendo UI for Angular',
|
|
133
133
|
productCode: 'KENDOUIANGULAR',
|
|
134
134
|
productCodes: ['KENDOUIANGULAR'],
|
|
135
|
-
publishDate:
|
|
136
|
-
version: '25.0.0-develop.
|
|
135
|
+
publishDate: 1785763547,
|
|
136
|
+
version: '25.0.0-develop.20',
|
|
137
137
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
138
138
|
};
|
|
139
139
|
|
|
@@ -193,15 +193,15 @@ class LocalizedMessagesDirective extends ComponentMessages {
|
|
|
193
193
|
super();
|
|
194
194
|
this.service = service;
|
|
195
195
|
}
|
|
196
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
197
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
196
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
197
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.26", type: LocalizedMessagesDirective, isStandalone: true, selector: "[kendoNotificationLocalizedMessages]", inputs: { closeTitle: "closeTitle" }, providers: [
|
|
198
198
|
{
|
|
199
199
|
provide: ComponentMessages,
|
|
200
200
|
useExisting: forwardRef(() => LocalizedMessagesDirective)
|
|
201
201
|
}
|
|
202
202
|
], usesInheritance: true, ngImport: i0 });
|
|
203
203
|
}
|
|
204
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
204
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: LocalizedMessagesDirective, decorators: [{
|
|
205
205
|
type: Directive,
|
|
206
206
|
args: [{
|
|
207
207
|
providers: [
|
|
@@ -459,14 +459,15 @@ class NotificationComponent {
|
|
|
459
459
|
fadeAnimation(duration, onclose) {
|
|
460
460
|
return onclose ? fadeCloseAnimation(duration) : fadeAnimation(duration);
|
|
461
461
|
}
|
|
462
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
463
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
462
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: NotificationComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1$1.AnimationBuilder }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
463
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.26", type: NotificationComponent, isStandalone: true, selector: "kendo-notification", inputs: { templateRef: "templateRef", templateString: "templateString", width: "width", height: "height", notificationLabel: "notificationLabel", notificationRole: "notificationRole", cssClass: "cssClass", hideAfter: "hideAfter", closable: "closable", type: "type", animation: "animation" }, host: { properties: { "attr.dir": "this.direction" } }, providers: [
|
|
464
464
|
LocalizationService,
|
|
465
465
|
{
|
|
466
466
|
provide: L10N_PREFIX,
|
|
467
467
|
useValue: 'kendo.notification'
|
|
468
468
|
},
|
|
469
|
-
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => NotificationComponent) }
|
|
469
|
+
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => NotificationComponent) },
|
|
470
|
+
provideComponentName('notification')
|
|
470
471
|
], viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: `
|
|
471
472
|
<ng-container kendoNotificationLocalizedMessages
|
|
472
473
|
i18n-closeTitle="kendo.notification.closeTitle|The title of the close button"
|
|
@@ -511,7 +512,7 @@ class NotificationComponent {
|
|
|
511
512
|
</div>
|
|
512
513
|
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoNotificationLocalizedMessages]", inputs: ["closeTitle"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
513
514
|
}
|
|
514
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
515
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: NotificationComponent, decorators: [{
|
|
515
516
|
type: Component,
|
|
516
517
|
args: [{
|
|
517
518
|
selector: 'kendo-notification',
|
|
@@ -564,7 +565,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
564
565
|
provide: L10N_PREFIX,
|
|
565
566
|
useValue: 'kendo.notification'
|
|
566
567
|
},
|
|
567
|
-
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => NotificationComponent) }
|
|
568
|
+
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => NotificationComponent) },
|
|
569
|
+
provideComponentName('notification')
|
|
568
570
|
],
|
|
569
571
|
standalone: true,
|
|
570
572
|
imports: [LocalizedMessagesDirective, NgClass, IconWrapperComponent, NgTemplateOutlet],
|
|
@@ -742,14 +744,14 @@ class NotificationContainerComponent {
|
|
|
742
744
|
const vertical = positionLayout.vertical[position.vertical];
|
|
743
745
|
return Object.assign({}, horizontal, vertical);
|
|
744
746
|
}
|
|
745
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
746
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
747
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: NotificationContainerComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
748
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.26", type: NotificationContainerComponent, isStandalone: true, 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: `
|
|
747
749
|
<div #group class="k-notification-group">
|
|
748
750
|
<ng-container #container></ng-container>
|
|
749
751
|
</div>
|
|
750
752
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
751
753
|
}
|
|
752
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
754
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: NotificationContainerComponent, decorators: [{
|
|
753
755
|
type: Component,
|
|
754
756
|
args: [{
|
|
755
757
|
selector: 'kendo-notification-container',
|
|
@@ -886,10 +888,10 @@ class NotificationService {
|
|
|
886
888
|
}
|
|
887
889
|
return container;
|
|
888
890
|
}
|
|
889
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
890
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
891
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: NotificationService, deps: [{ token: i0.Injector }, { token: NOTIFICATION_CONTAINER, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
892
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: NotificationService, providedIn: 'root' });
|
|
891
893
|
}
|
|
892
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
894
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: NotificationService, decorators: [{
|
|
893
895
|
type: Injectable,
|
|
894
896
|
args: [{
|
|
895
897
|
providedIn: 'root'
|
|
@@ -963,11 +965,11 @@ const KENDO_NOTIFICATION = [
|
|
|
963
965
|
* ```
|
|
964
966
|
*/
|
|
965
967
|
class NotificationModule {
|
|
966
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
967
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
968
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
968
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: NotificationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
969
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.26", ngImport: i0, type: NotificationModule, imports: [NotificationComponent, NotificationContainerComponent], exports: [NotificationComponent, NotificationContainerComponent] });
|
|
970
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: NotificationModule, providers: [NotificationService, IconsService], imports: [NotificationComponent] });
|
|
969
971
|
}
|
|
970
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
972
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: NotificationModule, decorators: [{
|
|
971
973
|
type: NgModule,
|
|
972
974
|
args: [{
|
|
973
975
|
imports: [...KENDO_NOTIFICATION],
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "25.0.0-develop.
|
|
10
|
+
"publishDate": 1785763547,
|
|
11
|
+
"version": "25.0.0-develop.20",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-notification",
|
|
3
|
-
"version": "25.0.0-develop.
|
|
3
|
+
"version": "25.0.0-develop.20",
|
|
4
4
|
"description": "Kendo UI Notification for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"package": {
|
|
18
18
|
"productName": "Kendo UI for Angular",
|
|
19
19
|
"productCode": "KENDOUIANGULAR",
|
|
20
|
-
"publishDate":
|
|
20
|
+
"publishDate": 1785763547,
|
|
21
21
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"@angular/core": "20 - 22",
|
|
28
28
|
"@angular/platform-browser": "20 - 22",
|
|
29
29
|
"@progress/kendo-licensing": "^1.11.0",
|
|
30
|
-
"@progress/kendo-angular-common": "25.0.0-develop.
|
|
31
|
-
"@progress/kendo-angular-l10n": "25.0.0-develop.
|
|
32
|
-
"@progress/kendo-angular-icons": "25.0.0-develop.
|
|
30
|
+
"@progress/kendo-angular-common": "25.0.0-develop.20",
|
|
31
|
+
"@progress/kendo-angular-l10n": "25.0.0-develop.20",
|
|
32
|
+
"@progress/kendo-angular-icons": "25.0.0-develop.20",
|
|
33
33
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"tslib": "^2.3.1",
|
|
37
|
-
"@progress/kendo-angular-schematics": "25.0.0-develop.
|
|
37
|
+
"@progress/kendo-angular-schematics": "25.0.0-develop.20"
|
|
38
38
|
},
|
|
39
39
|
"schematics": "./schematics/collection.json",
|
|
40
40
|
"module": "fesm2022/progress-kendo-angular-notification.mjs",
|