@progress/kendo-angular-listbox 24.0.0-develop.35 → 24.0.0-develop.37

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/directives.d.ts CHANGED
@@ -7,7 +7,8 @@ import { ItemSelectableDirective } from "./item-selectable.directive";
7
7
  import { ItemTemplateDirective } from "./item-template.directive";
8
8
  import { ListBoxComponent } from "./listbox.component";
9
9
  import { CustomMessagesComponent } from "./localization/custom-messages.component";
10
+ import { NoDataTemplateDirective } from "./no-data-template.directive";
10
11
  /**
11
12
  * Utility array that contains all `@progress/kendo-angular-listbox` related components and directives
12
13
  */
13
- export declare const KENDO_LISTBOX: readonly [typeof ListBoxComponent, typeof ItemTemplateDirective, typeof ItemSelectableDirective, typeof DataBindingDirective, typeof CustomMessagesComponent];
14
+ export declare const KENDO_LISTBOX: readonly [typeof ListBoxComponent, typeof ItemTemplateDirective, typeof ItemSelectableDirective, typeof NoDataTemplateDirective, typeof DataBindingDirective, typeof CustomMessagesComponent];
@@ -13,6 +13,7 @@ import { normalizeKeys, Keys, isPresent as isPresent$1, TemplateContextDirective
13
13
  import { take } from 'rxjs/operators';
14
14
  import * as i1 from '@progress/kendo-angular-l10n';
15
15
  import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
16
+ import { NgTemplateOutlet } from '@angular/common';
16
17
  import { IconsService } from '@progress/kendo-angular-icons';
17
18
  import { PopupService } from '@progress/kendo-angular-popup';
18
19
 
@@ -24,8 +25,8 @@ const packageMetadata = {
24
25
  productName: 'Kendo UI for Angular',
25
26
  productCode: 'KENDOUIANGULAR',
26
27
  productCodes: ['KENDOUIANGULAR'],
27
- publishDate: 1779117797,
28
- version: '24.0.0-develop.35',
28
+ publishDate: 1779188740,
29
+ version: '24.0.0-develop.37',
29
30
  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'
30
31
  };
31
32
 
@@ -227,6 +228,37 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
227
228
  }]
228
229
  }], ctorParameters: () => [{ type: i0.TemplateRef }] });
229
230
 
231
+ /**
232
+ * Lets you customize the content shown when the ListBox has no data to display.
233
+ * To define a no-data template, nest an `<ng-template>` tag
234
+ * with the `kendoListBoxNoDataTemplate` directive inside the `<kendo-listbox>` tag
235
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/listbox/templates#no-data-template)).
236
+ *
237
+ * @example
238
+ * ```html
239
+ * <kendo-listbox [data]="[]">
240
+ * <ng-template kendoListBoxNoDataTemplate>
241
+ * No items to display.
242
+ * </ng-template>
243
+ * </kendo-listbox>
244
+ * ```
245
+ */
246
+ class NoDataTemplateDirective {
247
+ templateRef;
248
+ constructor(templateRef) {
249
+ this.templateRef = templateRef;
250
+ }
251
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: NoDataTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
252
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.20", type: NoDataTemplateDirective, isStandalone: true, selector: "[kendoListBoxNoDataTemplate]", ngImport: i0 });
253
+ }
254
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: NoDataTemplateDirective, decorators: [{
255
+ type: Directive,
256
+ args: [{
257
+ selector: '[kendoListBoxNoDataTemplate]',
258
+ standalone: true
259
+ }]
260
+ }], ctorParameters: () => [{ type: i0.TemplateRef }] });
261
+
230
262
  /**
231
263
  * @hidden
232
264
  */
@@ -888,6 +920,10 @@ class ListBoxComponent {
888
920
  * @hidden
889
921
  */
890
922
  itemTemplate;
923
+ /**
924
+ * @hidden
925
+ */
926
+ noDataTemplate;
891
927
  /**
892
928
  * @hidden
893
929
  */
@@ -1358,7 +1394,7 @@ class ListBoxComponent {
1358
1394
  provide: L10N_PREFIX,
1359
1395
  useValue: 'kendo.listbox'
1360
1396
  },
1361
- ], queries: [{ propertyName: "itemTemplate", first: true, predicate: ItemTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "listboxElement", first: true, predicate: ["listbox"], descendants: true }, { propertyName: "toolbarElement", first: true, predicate: ["toolbar"], descendants: true }, { propertyName: "listboxItems", predicate: ["listboxItems"], descendants: true }, { propertyName: "tools", predicate: ["tools"], descendants: true }], ngImport: i0, template: `
1397
+ ], queries: [{ propertyName: "itemTemplate", first: true, predicate: ItemTemplateDirective, descendants: true }, { propertyName: "noDataTemplate", first: true, predicate: NoDataTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "listboxElement", first: true, predicate: ["listbox"], descendants: true }, { propertyName: "toolbarElement", first: true, predicate: ["toolbar"], descendants: true }, { propertyName: "listboxItems", predicate: ["listboxItems"], descendants: true }, { propertyName: "tools", predicate: ["tools"], descendants: true }], ngImport: i0, template: `
1362
1398
  <ng-container kendoListBoxLocalizedMessages
1363
1399
  i18n-moveUp="kendo.listbox.moveUp|The title of the Move Up button"
1364
1400
  moveUp="Move Up"
@@ -1410,7 +1446,7 @@ class ListBoxComponent {
1410
1446
  }
1411
1447
  <div class="k-list-scroller k-selectable">
1412
1448
  <div class="{{ listClasses }}">
1413
- @if (data.length > 0) {
1449
+ @if (data?.length > 0) {
1414
1450
  <div
1415
1451
  class="k-list-content"
1416
1452
  >
@@ -1449,14 +1485,18 @@ class ListBoxComponent {
1449
1485
  </ul>
1450
1486
  </div>
1451
1487
  }
1452
- @if (data.length === 0) {
1453
- <span
1454
- class="k-nodata"
1455
- >{{ messageFor('noDataText') }}</span>
1488
+ @if (!data?.length) {
1489
+ <span class="k-nodata">
1490
+ @if (noDataTemplate?.templateRef) {
1491
+ <ng-template [ngTemplateOutlet]="noDataTemplate.templateRef"></ng-template>
1492
+ } @else {
1493
+ {{ messageFor('noDataText') }}
1494
+ }
1495
+ </span>
1456
1496
  }
1457
1497
  </div>
1458
1498
  </div>
1459
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoListBoxLocalizedMessages]" }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "directive", type: ItemSelectableDirective, selector: "[kendoListBoxItemSelectable]", inputs: ["index"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }] });
1499
+ `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoListBoxLocalizedMessages]" }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "directive", type: ItemSelectableDirective, selector: "[kendoListBoxItemSelectable]", inputs: ["index"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
1460
1500
  }
1461
1501
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ListBoxComponent, decorators: [{
1462
1502
  type: Component,
@@ -1523,7 +1563,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1523
1563
  }
1524
1564
  <div class="k-list-scroller k-selectable">
1525
1565
  <div class="{{ listClasses }}">
1526
- @if (data.length > 0) {
1566
+ @if (data?.length > 0) {
1527
1567
  <div
1528
1568
  class="k-list-content"
1529
1569
  >
@@ -1562,16 +1602,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1562
1602
  </ul>
1563
1603
  </div>
1564
1604
  }
1565
- @if (data.length === 0) {
1566
- <span
1567
- class="k-nodata"
1568
- >{{ messageFor('noDataText') }}</span>
1605
+ @if (!data?.length) {
1606
+ <span class="k-nodata">
1607
+ @if (noDataTemplate?.templateRef) {
1608
+ <ng-template [ngTemplateOutlet]="noDataTemplate.templateRef"></ng-template>
1609
+ } @else {
1610
+ {{ messageFor('noDataText') }}
1611
+ }
1612
+ </span>
1569
1613
  }
1570
1614
  </div>
1571
1615
  </div>
1572
1616
  `,
1573
1617
  standalone: true,
1574
- imports: [LocalizedMessagesDirective, ButtonComponent, ItemSelectableDirective, TemplateContextDirective]
1618
+ imports: [LocalizedMessagesDirective, ButtonComponent, ItemSelectableDirective, TemplateContextDirective, NgTemplateOutlet]
1575
1619
  }]
1576
1620
  }], ctorParameters: () => [{ type: KeyboardNavigationService }, { type: ListBoxSelectionService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i1.LocalizationService }, { type: i0.ChangeDetectorRef }], propDecorators: { listboxClassName: [{
1577
1621
  type: HostBinding,
@@ -1582,6 +1626,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1582
1626
  }], itemTemplate: [{
1583
1627
  type: ContentChild,
1584
1628
  args: [ItemTemplateDirective]
1629
+ }], noDataTemplate: [{
1630
+ type: ContentChild,
1631
+ args: [NoDataTemplateDirective, { static: false }]
1585
1632
  }], listboxElement: [{
1586
1633
  type: ViewChild,
1587
1634
  args: ['listbox']
@@ -1958,6 +2005,7 @@ const KENDO_LISTBOX = [
1958
2005
  ListBoxComponent,
1959
2006
  ItemTemplateDirective,
1960
2007
  ItemSelectableDirective,
2008
+ NoDataTemplateDirective,
1961
2009
  DataBindingDirective,
1962
2010
  CustomMessagesComponent,
1963
2011
  ];
@@ -1968,7 +2016,7 @@ const KENDO_LISTBOX = [
1968
2016
  */
1969
2017
  class ListBoxModule {
1970
2018
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ListBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1971
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: ListBoxModule, imports: [ListBoxComponent, ItemTemplateDirective, ItemSelectableDirective, DataBindingDirective, CustomMessagesComponent], exports: [ListBoxComponent, ItemTemplateDirective, ItemSelectableDirective, DataBindingDirective, CustomMessagesComponent] });
2019
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: ListBoxModule, imports: [ListBoxComponent, ItemTemplateDirective, ItemSelectableDirective, NoDataTemplateDirective, DataBindingDirective, CustomMessagesComponent], exports: [ListBoxComponent, ItemTemplateDirective, ItemSelectableDirective, NoDataTemplateDirective, DataBindingDirective, CustomMessagesComponent] });
1972
2020
  static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ListBoxModule, providers: [IconsService, PopupService, ResizeBatchService], imports: [ListBoxComponent] });
1973
2021
  }
1974
2022
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ListBoxModule, decorators: [{
@@ -1984,5 +2032,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1984
2032
  * Generated bundle index. Do not edit.
1985
2033
  */
1986
2034
 
1987
- export { CustomMessagesComponent, DataBindingDirective, ItemSelectableDirective, ItemTemplateDirective, KENDO_LISTBOX, ListBoxComponent, ListBoxModule, LocalizedMessagesDirective };
2035
+ export { CustomMessagesComponent, DataBindingDirective, ItemSelectableDirective, ItemTemplateDirective, KENDO_LISTBOX, ListBoxComponent, ListBoxModule, LocalizedMessagesDirective, NoDataTemplateDirective };
1988
2036
 
package/index.d.ts CHANGED
@@ -6,6 +6,7 @@ export { ListBoxComponent } from './listbox.component';
6
6
  export { ListBoxModule } from './listbox.module';
7
7
  export { DataBindingDirective } from './data-binding.directive';
8
8
  export { ItemTemplateDirective } from './item-template.directive';
9
+ export { NoDataTemplateDirective } from './no-data-template.directive';
9
10
  export { ItemSelectableDirective } from './item-selectable.directive';
10
11
  export { ListBoxSize } from './size';
11
12
  export { ActionName } from './toolbar';
@@ -5,6 +5,7 @@
5
5
  import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, NgZone, OnDestroy, OnInit, QueryList, Renderer2 } from '@angular/core';
6
6
  import { ListBoxSelectionEvent, ListBoxSelectionService } from './selection.service';
7
7
  import { ItemTemplateDirective } from './item-template.directive';
8
+ import { NoDataTemplateDirective } from './no-data-template.directive';
8
9
  import { Direction } from './util';
9
10
  import { ListBoxSize } from './size';
10
11
  import { ActionName, ListBoxToolbarConfig, Tool } from './toolbar';
@@ -62,6 +63,10 @@ export declare class ListBoxComponent implements OnInit, AfterViewInit, OnDestro
62
63
  * @hidden
63
64
  */
64
65
  itemTemplate: ItemTemplateDirective;
66
+ /**
67
+ * @hidden
68
+ */
69
+ noDataTemplate: NoDataTemplateDirective;
65
70
  /**
66
71
  * @hidden
67
72
  */
@@ -233,5 +238,5 @@ export declare class ListBoxComponent implements OnInit, AfterViewInit, OnDestro
233
238
  private setToolbarClass;
234
239
  private setSizingClass;
235
240
  static ɵfac: i0.ɵɵFactoryDeclaration<ListBoxComponent, never>;
236
- static ɵcmp: i0.ɵɵComponentDeclaration<ListBoxComponent, "kendo-listbox", never, { "textField": { "alias": "textField"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "data": { "alias": "data"; "required": false; }; "size": { "alias": "size"; "required": false; }; "toolbar": { "alias": "toolbar"; "required": false; }; "listboxLabel": { "alias": "listboxLabel"; "required": false; }; "listboxToolbarLabel": { "alias": "listboxToolbarLabel"; "required": false; }; "itemDisabled": { "alias": "itemDisabled"; "required": false; }; }, { "selectionChange": "selectionChange"; "action": "action"; "getChildListbox": "getChildListbox"; }, ["itemTemplate"], never, true, never>;
241
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListBoxComponent, "kendo-listbox", never, { "textField": { "alias": "textField"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "data": { "alias": "data"; "required": false; }; "size": { "alias": "size"; "required": false; }; "toolbar": { "alias": "toolbar"; "required": false; }; "listboxLabel": { "alias": "listboxLabel"; "required": false; }; "listboxToolbarLabel": { "alias": "listboxToolbarLabel"; "required": false; }; "itemDisabled": { "alias": "itemDisabled"; "required": false; }; }, { "selectionChange": "selectionChange"; "action": "action"; "getChildListbox": "getChildListbox"; }, ["itemTemplate", "noDataTemplate"], never, true, never>;
237
242
  }
@@ -6,13 +6,14 @@ import * as i0 from "@angular/core";
6
6
  import * as i1 from "./listbox.component";
7
7
  import * as i2 from "./item-template.directive";
8
8
  import * as i3 from "./item-selectable.directive";
9
- import * as i4 from "./data-binding.directive";
10
- import * as i5 from "./localization/custom-messages.component";
9
+ import * as i4 from "./no-data-template.directive";
10
+ import * as i5 from "./data-binding.directive";
11
+ import * as i6 from "./localization/custom-messages.component";
11
12
  /**
12
13
  * Represents the [NgModule](https://angular.io/api/core/NgModule) definition for the ListBox component.
13
14
  */
14
15
  export declare class ListBoxModule {
15
16
  static ɵfac: i0.ɵɵFactoryDeclaration<ListBoxModule, never>;
16
- static ɵmod: i0.ɵɵNgModuleDeclaration<ListBoxModule, never, [typeof i1.ListBoxComponent, typeof i2.ItemTemplateDirective, typeof i3.ItemSelectableDirective, typeof i4.DataBindingDirective, typeof i5.CustomMessagesComponent], [typeof i1.ListBoxComponent, typeof i2.ItemTemplateDirective, typeof i3.ItemSelectableDirective, typeof i4.DataBindingDirective, typeof i5.CustomMessagesComponent]>;
17
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ListBoxModule, never, [typeof i1.ListBoxComponent, typeof i2.ItemTemplateDirective, typeof i3.ItemSelectableDirective, typeof i4.NoDataTemplateDirective, typeof i5.DataBindingDirective, typeof i6.CustomMessagesComponent], [typeof i1.ListBoxComponent, typeof i2.ItemTemplateDirective, typeof i3.ItemSelectableDirective, typeof i4.NoDataTemplateDirective, typeof i5.DataBindingDirective, typeof i6.CustomMessagesComponent]>;
17
18
  static ɵinj: i0.ɵɵInjectorDeclaration<ListBoxModule>;
18
19
  }
@@ -0,0 +1,27 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { TemplateRef } from '@angular/core';
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * Lets you customize the content shown when the ListBox has no data to display.
9
+ * To define a no-data template, nest an `<ng-template>` tag
10
+ * with the `kendoListBoxNoDataTemplate` directive inside the `<kendo-listbox>` tag
11
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/listbox/templates#no-data-template)).
12
+ *
13
+ * @example
14
+ * ```html
15
+ * <kendo-listbox [data]="[]">
16
+ * <ng-template kendoListBoxNoDataTemplate>
17
+ * No items to display.
18
+ * </ng-template>
19
+ * </kendo-listbox>
20
+ * ```
21
+ */
22
+ export declare class NoDataTemplateDirective {
23
+ templateRef: TemplateRef<any>;
24
+ constructor(templateRef: TemplateRef<any>);
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<NoDataTemplateDirective, never>;
26
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NoDataTemplateDirective, "[kendoListBoxNoDataTemplate]", never, {}, {}, never, never, true, never>;
27
+ }
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1779117797,
11
- "version": "24.0.0-develop.35",
10
+ "publishDate": 1779188740,
11
+ "version": "24.0.0-develop.37",
12
12
  "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"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-listbox",
3
- "version": "24.0.0-develop.35",
3
+ "version": "24.0.0-develop.37",
4
4
  "description": "Kendo UI for Angular ListBox",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -41,7 +41,7 @@
41
41
  "package": {
42
42
  "productName": "Kendo UI for Angular",
43
43
  "productCode": "KENDOUIANGULAR",
44
- "publishDate": 1779117797,
44
+ "publishDate": 1779188740,
45
45
  "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"
46
46
  }
47
47
  },
@@ -51,14 +51,14 @@
51
51
  "@angular/core": "19 - 21",
52
52
  "@angular/platform-browser": "19 - 21",
53
53
  "@progress/kendo-licensing": "^1.11.0",
54
- "@progress/kendo-angular-buttons": "24.0.0-develop.35",
55
- "@progress/kendo-angular-common": "24.0.0-develop.35",
56
- "@progress/kendo-angular-popup": "24.0.0-develop.35",
54
+ "@progress/kendo-angular-buttons": "24.0.0-develop.37",
55
+ "@progress/kendo-angular-common": "24.0.0-develop.37",
56
+ "@progress/kendo-angular-popup": "24.0.0-develop.37",
57
57
  "rxjs": "^6.5.3 || ^7.0.0"
58
58
  },
59
59
  "dependencies": {
60
60
  "tslib": "^2.3.1",
61
- "@progress/kendo-angular-schematics": "24.0.0-develop.35",
61
+ "@progress/kendo-angular-schematics": "24.0.0-develop.37",
62
62
  "@progress/kendo-common": "^1.0.1"
63
63
  },
64
64
  "schematics": "./schematics/collection.json",
@@ -11,11 +11,11 @@ function default_1(options) {
11
11
  // Additional dependencies to install.
12
12
  // See https://github.com/telerik/kendo-schematics/issues/28
13
13
  peerDependencies: {
14
- '@progress/kendo-angular-buttons': '24.0.0-develop.35',
15
- '@progress/kendo-angular-common': '24.0.0-develop.35',
16
- '@progress/kendo-angular-l10n': '24.0.0-develop.35',
14
+ '@progress/kendo-angular-buttons': '24.0.0-develop.37',
15
+ '@progress/kendo-angular-common': '24.0.0-develop.37',
16
+ '@progress/kendo-angular-l10n': '24.0.0-develop.37',
17
17
  // Peer of kendo-angular-buttons
18
- '@progress/kendo-angular-popup': '24.0.0-develop.35'
18
+ '@progress/kendo-angular-popup': '24.0.0-develop.37'
19
19
  } });
20
20
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
21
21
  }