@progress/kendo-angular-notification 21.1.1-develop.2 → 21.2.0-develop.2

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, NgIf, NgTemplateOutlet } from '@angular/common';
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: "14.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: [
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
- i18n-closeTitle="kendo.notification.closeTitle|The title of the close button"
190
- closeTitle="Close"
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
- [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">
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
- *ngIf="type && type.icon && type.style !== 'none'"
203
- innerCssClass="k-notification-status"
204
- [name]="typeIconClass()"
205
- [svgIcon]="typeSVGIcon()"
206
- >
203
+ innerCssClass="k-notification-status"
204
+ [name]="typeIconClass()"
205
+ [svgIcon]="typeSVGIcon()"
206
+ >
207
207
  </kendo-icon-wrapper>
208
- <div [id]="contentId" class="k-notification-content">
209
- <ng-template
210
- [ngIf]="templateRef"
211
- [ngTemplateOutlet]="templateRef">
212
- </ng-template>
213
- <ng-template
214
- [ngIf]="templateString">
215
- {{ templateString }}
216
- </ng-template>
217
- <ng-container #container></ng-container>
218
- </div>
219
-
220
- <span *ngIf="closable" class="k-notification-actions" aria-hidden="true">
221
- <span class="k-notification-action k-notification-close-action" [attr.title]="closeButtonTitle" (click)="onCloseClick()">
222
- <kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
223
- </span>
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
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoNotificationLocalizedMessages]", inputs: ["closeTitle"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { 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"] }] });
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
- i18n-closeTitle="kendo.notification.closeTitle|The title of the close button"
235
- closeTitle="Close"
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
- [ngClass]="cssClass"
240
- [style.height.px]="height"
241
- [style.width.px]="width"
242
- role="alert"
243
- aria-live="polite"
244
- [attr.aria-describedby]="contentId"
245
- [attr.aria-label]="notificationLabel">
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
- *ngIf="type && type.icon && type.style !== 'none'"
248
- innerCssClass="k-notification-status"
249
- [name]="typeIconClass()"
250
- [svgIcon]="typeSVGIcon()"
251
- >
251
+ innerCssClass="k-notification-status"
252
+ [name]="typeIconClass()"
253
+ [svgIcon]="typeSVGIcon()"
254
+ >
252
255
  </kendo-icon-wrapper>
253
- <div [id]="contentId" class="k-notification-content">
254
- <ng-template
255
- [ngIf]="templateRef"
256
- [ngTemplateOutlet]="templateRef">
257
- </ng-template>
258
- <ng-template
259
- [ngIf]="templateString">
260
- {{ templateString }}
261
- </ng-template>
262
- <ng-container #container></ng-container>
263
- </div>
264
-
265
- <span *ngIf="closable" class="k-notification-actions" aria-hidden="true">
266
- <span class="k-notification-action k-notification-close-action" [attr.title]="closeButtonTitle" (click)="onCloseClick()">
267
- <kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
268
- </span>
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, NgIf, IconWrapperComponent, NgTemplateOutlet]
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: 1763729384,
14
- version: '21.1.1-develop.2',
13
+ publishDate: 1764002498,
14
+ version: '21.2.0-develop.2',
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, NgIf, NgTemplateOutlet } from '@angular/common';
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: 1763729384,
121
- version: '21.1.1-develop.2',
120
+ publishDate: 1764002498,
121
+ version: '21.2.0-develop.2',
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: "14.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: [
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
- i18n-closeTitle="kendo.notification.closeTitle|The title of the close button"
369
- closeTitle="Close"
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
- [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">
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
- *ngIf="type && type.icon && type.style !== 'none'"
382
- innerCssClass="k-notification-status"
383
- [name]="typeIconClass()"
384
- [svgIcon]="typeSVGIcon()"
385
- >
382
+ innerCssClass="k-notification-status"
383
+ [name]="typeIconClass()"
384
+ [svgIcon]="typeSVGIcon()"
385
+ >
386
386
  </kendo-icon-wrapper>
387
- <div [id]="contentId" class="k-notification-content">
388
- <ng-template
389
- [ngIf]="templateRef"
390
- [ngTemplateOutlet]="templateRef">
391
- </ng-template>
392
- <ng-template
393
- [ngIf]="templateString">
394
- {{ templateString }}
395
- </ng-template>
396
- <ng-container #container></ng-container>
397
- </div>
398
-
399
- <span *ngIf="closable" class="k-notification-actions" aria-hidden="true">
400
- <span class="k-notification-action k-notification-close-action" [attr.title]="closeButtonTitle" (click)="onCloseClick()">
401
- <kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
402
- </span>
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
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoNotificationLocalizedMessages]", inputs: ["closeTitle"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { 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"] }] });
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
- i18n-closeTitle="kendo.notification.closeTitle|The title of the close button"
414
- closeTitle="Close"
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
- [ngClass]="cssClass"
419
- [style.height.px]="height"
420
- [style.width.px]="width"
421
- role="alert"
422
- aria-live="polite"
423
- [attr.aria-describedby]="contentId"
424
- [attr.aria-label]="notificationLabel">
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
- *ngIf="type && type.icon && type.style !== 'none'"
427
- innerCssClass="k-notification-status"
428
- [name]="typeIconClass()"
429
- [svgIcon]="typeSVGIcon()"
430
- >
430
+ innerCssClass="k-notification-status"
431
+ [name]="typeIconClass()"
432
+ [svgIcon]="typeSVGIcon()"
433
+ >
431
434
  </kendo-icon-wrapper>
432
- <div [id]="contentId" class="k-notification-content">
433
- <ng-template
434
- [ngIf]="templateRef"
435
- [ngTemplateOutlet]="templateRef">
436
- </ng-template>
437
- <ng-template
438
- [ngIf]="templateString">
439
- {{ templateString }}
440
- </ng-template>
441
- <ng-container #container></ng-container>
442
- </div>
443
-
444
- <span *ngIf="closable" class="k-notification-actions" aria-hidden="true">
445
- <span class="k-notification-action k-notification-close-action" [attr.title]="closeButtonTitle" (click)="onCloseClick()">
446
- <kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
447
- </span>
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, NgIf, IconWrapperComponent, NgTemplateOutlet]
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.1.1-develop.2",
3
+ "version": "21.2.0-develop.2",
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": 1763729384,
20
+ "publishDate": 1764002498,
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.1.1-develop.2",
31
- "@progress/kendo-angular-l10n": "21.1.1-develop.2",
32
- "@progress/kendo-angular-icons": "21.1.1-develop.2",
30
+ "@progress/kendo-angular-common": "21.2.0-develop.2",
31
+ "@progress/kendo-angular-l10n": "21.2.0-develop.2",
32
+ "@progress/kendo-angular-icons": "21.2.0-develop.2",
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.1.1-develop.2"
37
+ "@progress/kendo-angular-schematics": "21.2.0-develop.2"
38
38
  },
39
39
  "schematics": "./schematics/collection.json",
40
40
  "module": "fesm2022/progress-kendo-angular-notification.mjs",