@progress/kendo-angular-notification 21.1.1-develop.2 → 21.2.0-develop.10
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.
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Component, EventEmitter, HostBinding, Input, TemplateRef, ChangeDetectorRef, ViewChild, ViewContainerRef, ElementRef, Renderer2 } from '@angular/core';
|
|
6
|
-
import { NgClass,
|
|
6
|
+
import { NgClass, NgTemplateOutlet } from '@angular/common';
|
|
7
7
|
import { AnimationBuilder } from '@angular/animations';
|
|
8
8
|
import { take } from 'rxjs/operators';
|
|
9
9
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
@@ -178,7 +178,7 @@ export class NotificationComponent {
|
|
|
178
178
|
return onclose ? fadeCloseAnimation(duration) : fadeAnimation(duration);
|
|
179
179
|
}
|
|
180
180
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NotificationComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.AnimationBuilder }, { token: i2.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
181
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
181
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: NotificationComponent, isStandalone: true, selector: "kendo-notification", inputs: { templateRef: "templateRef", templateString: "templateString", width: "width", height: "height", notificationLabel: "notificationLabel", cssClass: "cssClass", hideAfter: "hideAfter", closable: "closable", type: "type", animation: "animation" }, host: { properties: { "attr.dir": "this.direction" } }, providers: [
|
|
182
182
|
LocalizationService,
|
|
183
183
|
{
|
|
184
184
|
provide: L10N_PREFIX,
|
|
@@ -186,44 +186,47 @@ export class NotificationComponent {
|
|
|
186
186
|
}
|
|
187
187
|
], viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: `
|
|
188
188
|
<ng-container kendoNotificationLocalizedMessages
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
189
|
+
i18n-closeTitle="kendo.notification.closeTitle|The title of the close button"
|
|
190
|
+
closeTitle="Close"
|
|
191
|
+
>
|
|
192
192
|
</ng-container>
|
|
193
193
|
<div class="k-notification k-notification-base {{ notificationClasses() }}"
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
194
|
+
[ngClass]="cssClass"
|
|
195
|
+
[style.height.px]="height"
|
|
196
|
+
[style.width.px]="width"
|
|
197
|
+
role="alert"
|
|
198
|
+
aria-live="polite"
|
|
199
|
+
[attr.aria-describedby]="contentId"
|
|
200
|
+
[attr.aria-label]="notificationLabel">
|
|
201
|
+
@if (type && type.icon && type.style !== 'none') {
|
|
201
202
|
<kendo-icon-wrapper
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
>
|
|
203
|
+
innerCssClass="k-notification-status"
|
|
204
|
+
[name]="typeIconClass()"
|
|
205
|
+
[svgIcon]="typeSVGIcon()"
|
|
206
|
+
>
|
|
207
207
|
</kendo-icon-wrapper>
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
208
|
+
}
|
|
209
|
+
<div [id]="contentId" class="k-notification-content">
|
|
210
|
+
@if (templateRef) {
|
|
211
|
+
<ng-template
|
|
212
|
+
[ngTemplateOutlet]="templateRef">
|
|
213
|
+
</ng-template>
|
|
214
|
+
}
|
|
215
|
+
@if (templateString) {
|
|
216
|
+
{{ templateString }}
|
|
217
|
+
}
|
|
218
|
+
<ng-container #container></ng-container>
|
|
219
|
+
</div>
|
|
220
|
+
|
|
221
|
+
@if (closable) {
|
|
222
|
+
<span class="k-notification-actions" aria-hidden="true">
|
|
223
|
+
<span class="k-notification-action k-notification-close-action" [attr.title]="closeButtonTitle" (click)="onCloseClick()">
|
|
224
|
+
<kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
|
|
225
|
+
</span>
|
|
224
226
|
</span>
|
|
227
|
+
}
|
|
225
228
|
</div>
|
|
226
|
-
|
|
229
|
+
`, 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"] }] });
|
|
227
230
|
}
|
|
228
231
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NotificationComponent, decorators: [{
|
|
229
232
|
type: Component,
|
|
@@ -231,44 +234,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
231
234
|
selector: 'kendo-notification',
|
|
232
235
|
template: `
|
|
233
236
|
<ng-container kendoNotificationLocalizedMessages
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
+
i18n-closeTitle="kendo.notification.closeTitle|The title of the close button"
|
|
238
|
+
closeTitle="Close"
|
|
239
|
+
>
|
|
237
240
|
</ng-container>
|
|
238
241
|
<div class="k-notification k-notification-base {{ notificationClasses() }}"
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
242
|
+
[ngClass]="cssClass"
|
|
243
|
+
[style.height.px]="height"
|
|
244
|
+
[style.width.px]="width"
|
|
245
|
+
role="alert"
|
|
246
|
+
aria-live="polite"
|
|
247
|
+
[attr.aria-describedby]="contentId"
|
|
248
|
+
[attr.aria-label]="notificationLabel">
|
|
249
|
+
@if (type && type.icon && type.style !== 'none') {
|
|
246
250
|
<kendo-icon-wrapper
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
>
|
|
251
|
+
innerCssClass="k-notification-status"
|
|
252
|
+
[name]="typeIconClass()"
|
|
253
|
+
[svgIcon]="typeSVGIcon()"
|
|
254
|
+
>
|
|
252
255
|
</kendo-icon-wrapper>
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
256
|
+
}
|
|
257
|
+
<div [id]="contentId" class="k-notification-content">
|
|
258
|
+
@if (templateRef) {
|
|
259
|
+
<ng-template
|
|
260
|
+
[ngTemplateOutlet]="templateRef">
|
|
261
|
+
</ng-template>
|
|
262
|
+
}
|
|
263
|
+
@if (templateString) {
|
|
264
|
+
{{ templateString }}
|
|
265
|
+
}
|
|
266
|
+
<ng-container #container></ng-container>
|
|
267
|
+
</div>
|
|
268
|
+
|
|
269
|
+
@if (closable) {
|
|
270
|
+
<span class="k-notification-actions" aria-hidden="true">
|
|
271
|
+
<span class="k-notification-action k-notification-close-action" [attr.title]="closeButtonTitle" (click)="onCloseClick()">
|
|
272
|
+
<kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
|
|
273
|
+
</span>
|
|
269
274
|
</span>
|
|
275
|
+
}
|
|
270
276
|
</div>
|
|
271
|
-
|
|
277
|
+
`,
|
|
272
278
|
providers: [
|
|
273
279
|
LocalizationService,
|
|
274
280
|
{
|
|
@@ -277,7 +283,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
277
283
|
}
|
|
278
284
|
],
|
|
279
285
|
standalone: true,
|
|
280
|
-
imports: [LocalizedMessagesDirective, NgClass,
|
|
286
|
+
imports: [LocalizedMessagesDirective, NgClass, IconWrapperComponent, NgTemplateOutlet]
|
|
281
287
|
}]
|
|
282
288
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1.AnimationBuilder }, { type: i2.LocalizationService }], propDecorators: { container: [{
|
|
283
289
|
type: ViewChild,
|
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '21.
|
|
13
|
+
publishDate: 1764593164,
|
|
14
|
+
version: '21.2.0-develop.10',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
6
|
import { forwardRef, Directive, Input, EventEmitter, ViewContainerRef, Component, ViewChild, HostBinding, TemplateRef, InjectionToken, ApplicationRef, Injectable, Inject, Optional, NgModule } from '@angular/core';
|
|
7
|
-
import { NgClass,
|
|
7
|
+
import { NgClass, NgTemplateOutlet } from '@angular/common';
|
|
8
8
|
import * as i1$1 from '@angular/animations';
|
|
9
9
|
import { style, animate } from '@angular/animations';
|
|
10
10
|
import { take } from 'rxjs/operators';
|
|
@@ -117,8 +117,8 @@ const packageMetadata = {
|
|
|
117
117
|
productName: 'Kendo UI for Angular',
|
|
118
118
|
productCode: 'KENDOUIANGULAR',
|
|
119
119
|
productCodes: ['KENDOUIANGULAR'],
|
|
120
|
-
publishDate:
|
|
121
|
-
version: '21.
|
|
120
|
+
publishDate: 1764593164,
|
|
121
|
+
version: '21.2.0-develop.10',
|
|
122
122
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
123
123
|
};
|
|
124
124
|
|
|
@@ -357,7 +357,7 @@ class NotificationComponent {
|
|
|
357
357
|
return onclose ? fadeCloseAnimation(duration) : fadeAnimation(duration);
|
|
358
358
|
}
|
|
359
359
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", 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 });
|
|
360
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
360
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: NotificationComponent, isStandalone: true, selector: "kendo-notification", inputs: { templateRef: "templateRef", templateString: "templateString", width: "width", height: "height", notificationLabel: "notificationLabel", cssClass: "cssClass", hideAfter: "hideAfter", closable: "closable", type: "type", animation: "animation" }, host: { properties: { "attr.dir": "this.direction" } }, providers: [
|
|
361
361
|
LocalizationService,
|
|
362
362
|
{
|
|
363
363
|
provide: L10N_PREFIX,
|
|
@@ -365,44 +365,47 @@ class NotificationComponent {
|
|
|
365
365
|
}
|
|
366
366
|
], viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: `
|
|
367
367
|
<ng-container kendoNotificationLocalizedMessages
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
368
|
+
i18n-closeTitle="kendo.notification.closeTitle|The title of the close button"
|
|
369
|
+
closeTitle="Close"
|
|
370
|
+
>
|
|
371
371
|
</ng-container>
|
|
372
372
|
<div class="k-notification k-notification-base {{ notificationClasses() }}"
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
373
|
+
[ngClass]="cssClass"
|
|
374
|
+
[style.height.px]="height"
|
|
375
|
+
[style.width.px]="width"
|
|
376
|
+
role="alert"
|
|
377
|
+
aria-live="polite"
|
|
378
|
+
[attr.aria-describedby]="contentId"
|
|
379
|
+
[attr.aria-label]="notificationLabel">
|
|
380
|
+
@if (type && type.icon && type.style !== 'none') {
|
|
380
381
|
<kendo-icon-wrapper
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
>
|
|
382
|
+
innerCssClass="k-notification-status"
|
|
383
|
+
[name]="typeIconClass()"
|
|
384
|
+
[svgIcon]="typeSVGIcon()"
|
|
385
|
+
>
|
|
386
386
|
</kendo-icon-wrapper>
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
387
|
+
}
|
|
388
|
+
<div [id]="contentId" class="k-notification-content">
|
|
389
|
+
@if (templateRef) {
|
|
390
|
+
<ng-template
|
|
391
|
+
[ngTemplateOutlet]="templateRef">
|
|
392
|
+
</ng-template>
|
|
393
|
+
}
|
|
394
|
+
@if (templateString) {
|
|
395
|
+
{{ templateString }}
|
|
396
|
+
}
|
|
397
|
+
<ng-container #container></ng-container>
|
|
398
|
+
</div>
|
|
399
|
+
|
|
400
|
+
@if (closable) {
|
|
401
|
+
<span class="k-notification-actions" aria-hidden="true">
|
|
402
|
+
<span class="k-notification-action k-notification-close-action" [attr.title]="closeButtonTitle" (click)="onCloseClick()">
|
|
403
|
+
<kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
|
|
404
|
+
</span>
|
|
403
405
|
</span>
|
|
406
|
+
}
|
|
404
407
|
</div>
|
|
405
|
-
|
|
408
|
+
`, 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"] }] });
|
|
406
409
|
}
|
|
407
410
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NotificationComponent, decorators: [{
|
|
408
411
|
type: Component,
|
|
@@ -410,44 +413,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
410
413
|
selector: 'kendo-notification',
|
|
411
414
|
template: `
|
|
412
415
|
<ng-container kendoNotificationLocalizedMessages
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
+
i18n-closeTitle="kendo.notification.closeTitle|The title of the close button"
|
|
417
|
+
closeTitle="Close"
|
|
418
|
+
>
|
|
416
419
|
</ng-container>
|
|
417
420
|
<div class="k-notification k-notification-base {{ notificationClasses() }}"
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
421
|
+
[ngClass]="cssClass"
|
|
422
|
+
[style.height.px]="height"
|
|
423
|
+
[style.width.px]="width"
|
|
424
|
+
role="alert"
|
|
425
|
+
aria-live="polite"
|
|
426
|
+
[attr.aria-describedby]="contentId"
|
|
427
|
+
[attr.aria-label]="notificationLabel">
|
|
428
|
+
@if (type && type.icon && type.style !== 'none') {
|
|
425
429
|
<kendo-icon-wrapper
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
>
|
|
430
|
+
innerCssClass="k-notification-status"
|
|
431
|
+
[name]="typeIconClass()"
|
|
432
|
+
[svgIcon]="typeSVGIcon()"
|
|
433
|
+
>
|
|
431
434
|
</kendo-icon-wrapper>
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
435
|
+
}
|
|
436
|
+
<div [id]="contentId" class="k-notification-content">
|
|
437
|
+
@if (templateRef) {
|
|
438
|
+
<ng-template
|
|
439
|
+
[ngTemplateOutlet]="templateRef">
|
|
440
|
+
</ng-template>
|
|
441
|
+
}
|
|
442
|
+
@if (templateString) {
|
|
443
|
+
{{ templateString }}
|
|
444
|
+
}
|
|
445
|
+
<ng-container #container></ng-container>
|
|
446
|
+
</div>
|
|
447
|
+
|
|
448
|
+
@if (closable) {
|
|
449
|
+
<span class="k-notification-actions" aria-hidden="true">
|
|
450
|
+
<span class="k-notification-action k-notification-close-action" [attr.title]="closeButtonTitle" (click)="onCloseClick()">
|
|
451
|
+
<kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
|
|
452
|
+
</span>
|
|
448
453
|
</span>
|
|
454
|
+
}
|
|
449
455
|
</div>
|
|
450
|
-
|
|
456
|
+
`,
|
|
451
457
|
providers: [
|
|
452
458
|
LocalizationService,
|
|
453
459
|
{
|
|
@@ -456,7 +462,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
456
462
|
}
|
|
457
463
|
],
|
|
458
464
|
standalone: true,
|
|
459
|
-
imports: [LocalizedMessagesDirective, NgClass,
|
|
465
|
+
imports: [LocalizedMessagesDirective, NgClass, IconWrapperComponent, NgTemplateOutlet]
|
|
460
466
|
}]
|
|
461
467
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1$1.AnimationBuilder }, { type: i1.LocalizationService }], propDecorators: { container: [{
|
|
462
468
|
type: ViewChild,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-notification",
|
|
3
|
-
"version": "21.
|
|
3
|
+
"version": "21.2.0-develop.10",
|
|
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": 1764593164,
|
|
21
21
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"@angular/core": "18 - 21",
|
|
28
28
|
"@angular/platform-browser": "18 - 21",
|
|
29
29
|
"@progress/kendo-licensing": "^1.7.0",
|
|
30
|
-
"@progress/kendo-angular-common": "21.
|
|
31
|
-
"@progress/kendo-angular-l10n": "21.
|
|
32
|
-
"@progress/kendo-angular-icons": "21.
|
|
30
|
+
"@progress/kendo-angular-common": "21.2.0-develop.10",
|
|
31
|
+
"@progress/kendo-angular-l10n": "21.2.0-develop.10",
|
|
32
|
+
"@progress/kendo-angular-icons": "21.2.0-develop.10",
|
|
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": "21.
|
|
37
|
+
"@progress/kendo-angular-schematics": "21.2.0-develop.10"
|
|
38
38
|
},
|
|
39
39
|
"schematics": "./schematics/collection.json",
|
|
40
40
|
"module": "fesm2022/progress-kendo-angular-notification.mjs",
|