@progress/kendo-angular-listview 24.0.0-develop.36 → 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
@@ -14,7 +14,8 @@ import { FooterTemplateDirective } from "./templates/footer-template.directive";
14
14
  import { HeaderTemplateDirective } from "./templates/header-template.directive";
15
15
  import { ItemTemplateDirective } from "./templates/item-template.directive";
16
16
  import { LoaderTemplateDirective } from "./templates/loader-template.directive";
17
+ import { NoDataTemplateDirective } from "./templates/no-data-template.directive";
17
18
  /**
18
19
  * Utility array that contains all `@progress/kendo-angular-listview` related components and directives
19
20
  */
20
- export declare const KENDO_LISTVIEW: readonly [typeof ListViewComponent, typeof ItemTemplateDirective, typeof HeaderTemplateDirective, typeof FooterTemplateDirective, typeof LoaderTemplateDirective, typeof DataBindingDirective, typeof EditTemplateDirective, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective];
21
+ export declare const KENDO_LISTVIEW: readonly [typeof ListViewComponent, typeof ItemTemplateDirective, typeof HeaderTemplateDirective, typeof FooterTemplateDirective, typeof LoaderTemplateDirective, typeof NoDataTemplateDirective, typeof DataBindingDirective, typeof EditTemplateDirective, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective];
@@ -25,8 +25,8 @@ const packageMetadata = {
25
25
  productName: 'Kendo UI for Angular',
26
26
  productCode: 'KENDOUIANGULAR',
27
27
  productCodes: ['KENDOUIANGULAR'],
28
- publishDate: 1779120573,
29
- version: '24.0.0-develop.36',
28
+ publishDate: 1779188739,
29
+ version: '24.0.0-develop.37',
30
30
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
31
31
  };
32
32
 
@@ -505,6 +505,37 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
505
505
  }]
506
506
  }], ctorParameters: () => [{ type: i0.TemplateRef }] });
507
507
 
508
+ /**
509
+ * Lets you customize the content shown when the ListView has no data to display.
510
+ * To define a no-data template, nest an `<ng-template>` tag
511
+ * with the `kendoListViewNoDataTemplate` directive inside the `<kendo-listview>` tag
512
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/templates#no-data-template)).
513
+ *
514
+ * @example
515
+ * ```html
516
+ * <kendo-listview [data]="[]">
517
+ * <ng-template kendoListViewNoDataTemplate>
518
+ * No items to display.
519
+ * </ng-template>
520
+ * </kendo-listview>
521
+ * ```
522
+ */
523
+ class NoDataTemplateDirective {
524
+ templateRef;
525
+ constructor(templateRef) {
526
+ this.templateRef = templateRef;
527
+ }
528
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: NoDataTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
529
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.20", type: NoDataTemplateDirective, isStandalone: true, selector: "[kendoListViewNoDataTemplate]", ngImport: i0 });
530
+ }
531
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: NoDataTemplateDirective, decorators: [{
532
+ type: Directive,
533
+ args: [{
534
+ selector: '[kendoListViewNoDataTemplate]',
535
+ standalone: true
536
+ }]
537
+ }], ctorParameters: () => [{ type: i0.TemplateRef }] });
538
+
508
539
  /**
509
540
  * Defines the edit template of the ListView ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/editing/editing-template-forms)).
510
541
  * Helps you customize the content of the edited items. To define the template, nest an `<ng-template>`
@@ -737,6 +768,10 @@ class ListViewComponent {
737
768
  * @hidden
738
769
  */
739
770
  contentContainer;
771
+ /**
772
+ * @hidden
773
+ */
774
+ noDataTemplate;
740
775
  /**
741
776
  * @hidden
742
777
  */
@@ -1162,7 +1197,7 @@ class ListViewComponent {
1162
1197
  provide: L10N_PREFIX,
1163
1198
  useValue: 'kendo.listview'
1164
1199
  }
1165
- ], queries: [{ propertyName: "itemTemplate", first: true, predicate: ItemTemplateDirective, descendants: true }, { propertyName: "headerTemplate", first: true, predicate: HeaderTemplateDirective, descendants: true }, { propertyName: "footerTemplate", first: true, predicate: FooterTemplateDirective, descendants: true }, { propertyName: "loaderTemplate", first: true, predicate: LoaderTemplateDirective, descendants: true }, { propertyName: "editTemplate", first: true, predicate: EditTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "contentContainer", first: true, predicate: ["contentContainer"], descendants: true, static: true }, { propertyName: "listViewItems", predicate: ListViewNavigableItemDirective, descendants: true }], exportAs: ["kendoListView"], usesOnChanges: true, ngImport: i0, template: `
1200
+ ], queries: [{ propertyName: "itemTemplate", first: true, predicate: ItemTemplateDirective, descendants: true }, { propertyName: "headerTemplate", first: true, predicate: HeaderTemplateDirective, descendants: true }, { propertyName: "footerTemplate", first: true, predicate: FooterTemplateDirective, descendants: true }, { propertyName: "loaderTemplate", first: true, predicate: LoaderTemplateDirective, descendants: true }, { propertyName: "noDataTemplate", first: true, predicate: NoDataTemplateDirective, descendants: true }, { propertyName: "editTemplate", first: true, predicate: EditTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "contentContainer", first: true, predicate: ["contentContainer"], descendants: true, static: true }, { propertyName: "listViewItems", predicate: ListViewNavigableItemDirective, descendants: true }], exportAs: ["kendoListView"], usesOnChanges: true, ngImport: i0, template: `
1166
1201
  <!-- top pager -->
1167
1202
  @if (pagerSettings?.position !== 'bottom') {
1168
1203
  <ng-template
@@ -1239,6 +1274,26 @@ class ListViewComponent {
1239
1274
  </ng-template>
1240
1275
  </div>
1241
1276
  }
1277
+
1278
+ <!-- no data -->
1279
+ @if (!items.length && !editService.hasNewItem && !loading) {
1280
+ <div
1281
+ class="k-listview-item"
1282
+ [attr.role]="listItemRole"
1283
+ aria-setsize="1"
1284
+ aria-posinset="1"
1285
+ tabindex="0"
1286
+ >
1287
+ <span class="k-no-data" aria-live="polite">
1288
+ @if (noDataTemplate?.templateRef) {
1289
+ <ng-template
1290
+ [ngTemplateOutlet]="noDataTemplate.templateRef"
1291
+ >
1292
+ </ng-template>
1293
+ }
1294
+ </span>
1295
+ </div>
1296
+ }
1242
1297
  </div>
1243
1298
 
1244
1299
  <!-- loading indicator -->
@@ -1393,6 +1448,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1393
1448
  </ng-template>
1394
1449
  </div>
1395
1450
  }
1451
+
1452
+ <!-- no data -->
1453
+ @if (!items.length && !editService.hasNewItem && !loading) {
1454
+ <div
1455
+ class="k-listview-item"
1456
+ [attr.role]="listItemRole"
1457
+ aria-setsize="1"
1458
+ aria-posinset="1"
1459
+ tabindex="0"
1460
+ >
1461
+ <span class="k-no-data" aria-live="polite">
1462
+ @if (noDataTemplate?.templateRef) {
1463
+ <ng-template
1464
+ [ngTemplateOutlet]="noDataTemplate.templateRef"
1465
+ >
1466
+ </ng-template>
1467
+ }
1468
+ </span>
1469
+ </div>
1470
+ }
1396
1471
  </div>
1397
1472
 
1398
1473
  <!-- loading indicator -->
@@ -1475,6 +1550,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1475
1550
  }], contentContainer: [{
1476
1551
  type: ViewChild,
1477
1552
  args: ['contentContainer', { static: true }]
1553
+ }], noDataTemplate: [{
1554
+ type: ContentChild,
1555
+ args: [NoDataTemplateDirective, { static: false }]
1478
1556
  }], editTemplate: [{
1479
1557
  type: ContentChild,
1480
1558
  args: [EditTemplateDirective, { static: false }]
@@ -2054,6 +2132,7 @@ const KENDO_LISTVIEW = [
2054
2132
  HeaderTemplateDirective,
2055
2133
  FooterTemplateDirective,
2056
2134
  LoaderTemplateDirective,
2135
+ NoDataTemplateDirective,
2057
2136
  DataBindingDirective,
2058
2137
  EditTemplateDirective,
2059
2138
  EditCommandDirective,
@@ -2086,7 +2165,7 @@ const KENDO_LISTVIEW = [
2086
2165
  */
2087
2166
  class ListViewModule {
2088
2167
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ListViewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2089
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: ListViewModule, imports: [ListViewComponent, ItemTemplateDirective, HeaderTemplateDirective, FooterTemplateDirective, LoaderTemplateDirective, DataBindingDirective, EditTemplateDirective, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective], exports: [ListViewComponent, ItemTemplateDirective, HeaderTemplateDirective, FooterTemplateDirective, LoaderTemplateDirective, DataBindingDirective, EditTemplateDirective, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective] });
2168
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: ListViewModule, imports: [ListViewComponent, ItemTemplateDirective, HeaderTemplateDirective, FooterTemplateDirective, LoaderTemplateDirective, NoDataTemplateDirective, DataBindingDirective, EditTemplateDirective, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective], exports: [ListViewComponent, ItemTemplateDirective, HeaderTemplateDirective, FooterTemplateDirective, LoaderTemplateDirective, NoDataTemplateDirective, DataBindingDirective, EditTemplateDirective, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective] });
2090
2169
  static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ListViewModule, providers: [
2091
2170
  IconsService,
2092
2171
  PopupService,
@@ -2110,5 +2189,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
2110
2189
  * Generated bundle index. Do not edit.
2111
2190
  */
2112
2191
 
2113
- export { AddCommandDirective, CancelCommandDirective, DataBindingDirective, EditCommandDirective, EditTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, ItemTemplateDirective, KENDO_LISTVIEW, ListViewComponent, ListViewModule, LoaderTemplateDirective, PageSizeChangeEvent, RemoveCommandDirective, SaveCommandDirective };
2192
+ export { AddCommandDirective, CancelCommandDirective, DataBindingDirective, EditCommandDirective, EditTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, ItemTemplateDirective, KENDO_LISTVIEW, ListViewComponent, ListViewModule, LoaderTemplateDirective, NoDataTemplateDirective, PageSizeChangeEvent, RemoveCommandDirective, SaveCommandDirective };
2114
2193
 
package/index.d.ts CHANGED
@@ -7,6 +7,7 @@ export { ItemTemplateDirective } from './templates/item-template.directive';
7
7
  export { HeaderTemplateDirective } from './templates/header-template.directive';
8
8
  export { FooterTemplateDirective } from './templates/footer-template.directive';
9
9
  export { LoaderTemplateDirective } from './templates/loader-template.directive';
10
+ export { NoDataTemplateDirective } from './templates/no-data-template.directive';
10
11
  export { DataBindingDirective } from './data-binding/data-binding.directive';
11
12
  export { EditTemplateDirective } from './editing/edit-template.directive';
12
13
  export { AddEvent } from './editing/events/add-event-args.interface';
@@ -9,6 +9,7 @@ import { ItemTemplateDirective } from './templates/item-template.directive';
9
9
  import { HeaderTemplateDirective } from './templates/header-template.directive';
10
10
  import { FooterTemplateDirective } from './templates/footer-template.directive';
11
11
  import { LoaderTemplateDirective } from './templates/loader-template.directive';
12
+ import { NoDataTemplateDirective } from './templates/no-data-template.directive';
12
13
  import { ScrollBottomEvent } from './models/scroll-bottom-event';
13
14
  import { PageChangeEvent } from './models/page-change-event';
14
15
  import { PageSizeChangeEvent } from './models/page-size-change-event';
@@ -84,6 +85,10 @@ export declare class ListViewComponent implements AfterViewInit, OnChanges, OnDe
84
85
  * @hidden
85
86
  */
86
87
  contentContainer: ElementRef<HTMLElement>;
88
+ /**
89
+ * @hidden
90
+ */
91
+ noDataTemplate: NoDataTemplateDirective;
87
92
  /**
88
93
  * @hidden
89
94
  */
@@ -345,5 +350,5 @@ export declare class ListViewComponent implements AfterViewInit, OnChanges, OnDe
345
350
  private attachEditHandlers;
346
351
  private emitCRUDEvent;
347
352
  static ɵfac: i0.ɵɵFactoryDeclaration<ListViewComponent, never>;
348
- static ɵcmp: i0.ɵɵComponentDeclaration<ListViewComponent, "kendo-listview", ["kendoListView"], { "bordered": { "alias": "bordered"; "required": false; }; "data": { "alias": "data"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "containerStyle": { "alias": "containerStyle"; "required": false; }; "itemStyle": { "alias": "itemStyle"; "required": false; }; "containerClass": { "alias": "containerClass"; "required": false; }; "itemClass": { "alias": "itemClass"; "required": false; }; "containerLabel": { "alias": "containerLabel"; "required": false; }; "containerRole": { "alias": "containerRole"; "required": false; }; "listItemRole": { "alias": "listItemRole"; "required": false; }; "navigable": { "alias": "navigable"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "pageable": { "alias": "pageable"; "required": false; }; "height": { "alias": "height"; "required": false; }; }, { "scrollBottom": "scrollBottom"; "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; "edit": "edit"; "cancel": "cancel"; "save": "save"; "remove": "remove"; "add": "add"; }, ["itemTemplate", "headerTemplate", "footerTemplate", "loaderTemplate", "editTemplate"], never, true, never>;
353
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListViewComponent, "kendo-listview", ["kendoListView"], { "bordered": { "alias": "bordered"; "required": false; }; "data": { "alias": "data"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "containerStyle": { "alias": "containerStyle"; "required": false; }; "itemStyle": { "alias": "itemStyle"; "required": false; }; "containerClass": { "alias": "containerClass"; "required": false; }; "itemClass": { "alias": "itemClass"; "required": false; }; "containerLabel": { "alias": "containerLabel"; "required": false; }; "containerRole": { "alias": "containerRole"; "required": false; }; "listItemRole": { "alias": "listItemRole"; "required": false; }; "navigable": { "alias": "navigable"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "pageable": { "alias": "pageable"; "required": false; }; "height": { "alias": "height"; "required": false; }; }, { "scrollBottom": "scrollBottom"; "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; "edit": "edit"; "cancel": "cancel"; "save": "save"; "remove": "remove"; "add": "add"; }, ["itemTemplate", "headerTemplate", "footerTemplate", "loaderTemplate", "noDataTemplate", "editTemplate"], never, true, never>;
349
354
  }
@@ -8,13 +8,14 @@ import * as i2 from "./templates/item-template.directive";
8
8
  import * as i3 from "./templates/header-template.directive";
9
9
  import * as i4 from "./templates/footer-template.directive";
10
10
  import * as i5 from "./templates/loader-template.directive";
11
- import * as i6 from "./data-binding/data-binding.directive";
12
- import * as i7 from "./editing/edit-template.directive";
13
- import * as i8 from "./editing/commands/edit-command.directive";
14
- import * as i9 from "./editing/commands/cancel-command.directive";
15
- import * as i10 from "./editing/commands/save-command.directive";
16
- import * as i11 from "./editing/commands/remove-command.directive";
17
- import * as i12 from "./editing/commands/add-command.directive";
11
+ import * as i6 from "./templates/no-data-template.directive";
12
+ import * as i7 from "./data-binding/data-binding.directive";
13
+ import * as i8 from "./editing/edit-template.directive";
14
+ import * as i9 from "./editing/commands/edit-command.directive";
15
+ import * as i10 from "./editing/commands/cancel-command.directive";
16
+ import * as i11 from "./editing/commands/save-command.directive";
17
+ import * as i12 from "./editing/commands/remove-command.directive";
18
+ import * as i13 from "./editing/commands/add-command.directive";
18
19
  /**
19
20
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
20
21
  * definition for the ListView component.
@@ -37,6 +38,6 @@ import * as i12 from "./editing/commands/add-command.directive";
37
38
  */
38
39
  export declare class ListViewModule {
39
40
  static ɵfac: i0.ɵɵFactoryDeclaration<ListViewModule, never>;
40
- static ɵmod: i0.ɵɵNgModuleDeclaration<ListViewModule, never, [typeof i1.ListViewComponent, typeof i2.ItemTemplateDirective, typeof i3.HeaderTemplateDirective, typeof i4.FooterTemplateDirective, typeof i5.LoaderTemplateDirective, typeof i6.DataBindingDirective, typeof i7.EditTemplateDirective, typeof i8.EditCommandDirective, typeof i9.CancelCommandDirective, typeof i10.SaveCommandDirective, typeof i11.RemoveCommandDirective, typeof i12.AddCommandDirective], [typeof i1.ListViewComponent, typeof i2.ItemTemplateDirective, typeof i3.HeaderTemplateDirective, typeof i4.FooterTemplateDirective, typeof i5.LoaderTemplateDirective, typeof i6.DataBindingDirective, typeof i7.EditTemplateDirective, typeof i8.EditCommandDirective, typeof i9.CancelCommandDirective, typeof i10.SaveCommandDirective, typeof i11.RemoveCommandDirective, typeof i12.AddCommandDirective]>;
41
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ListViewModule, never, [typeof i1.ListViewComponent, typeof i2.ItemTemplateDirective, typeof i3.HeaderTemplateDirective, typeof i4.FooterTemplateDirective, typeof i5.LoaderTemplateDirective, typeof i6.NoDataTemplateDirective, typeof i7.DataBindingDirective, typeof i8.EditTemplateDirective, typeof i9.EditCommandDirective, typeof i10.CancelCommandDirective, typeof i11.SaveCommandDirective, typeof i12.RemoveCommandDirective, typeof i13.AddCommandDirective], [typeof i1.ListViewComponent, typeof i2.ItemTemplateDirective, typeof i3.HeaderTemplateDirective, typeof i4.FooterTemplateDirective, typeof i5.LoaderTemplateDirective, typeof i6.NoDataTemplateDirective, typeof i7.DataBindingDirective, typeof i8.EditTemplateDirective, typeof i9.EditCommandDirective, typeof i10.CancelCommandDirective, typeof i11.SaveCommandDirective, typeof i12.RemoveCommandDirective, typeof i13.AddCommandDirective]>;
41
42
  static ɵinj: i0.ɵɵInjectorDeclaration<ListViewModule>;
42
43
  }
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1779120573,
11
- "version": "24.0.0-develop.36",
10
+ "publishDate": 1779188739,
11
+ "version": "24.0.0-develop.37",
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-listview",
3
- "version": "24.0.0-develop.36",
3
+ "version": "24.0.0-develop.37",
4
4
  "description": "Kendo UI Angular listview component",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -19,7 +19,7 @@
19
19
  "package": {
20
20
  "productName": "Kendo UI for Angular",
21
21
  "productCode": "KENDOUIANGULAR",
22
- "publishDate": 1779120573,
22
+ "publishDate": 1779188739,
23
23
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
24
24
  }
25
25
  },
@@ -30,16 +30,16 @@
30
30
  "@angular/forms": "19 - 21",
31
31
  "@angular/platform-browser": "19 - 21",
32
32
  "@progress/kendo-licensing": "^1.11.0",
33
- "@progress/kendo-angular-buttons": "24.0.0-develop.36",
34
- "@progress/kendo-angular-common": "24.0.0-develop.36",
35
- "@progress/kendo-angular-icons": "24.0.0-develop.36",
36
- "@progress/kendo-angular-l10n": "24.0.0-develop.36",
37
- "@progress/kendo-angular-pager": "24.0.0-develop.36",
33
+ "@progress/kendo-angular-buttons": "24.0.0-develop.37",
34
+ "@progress/kendo-angular-common": "24.0.0-develop.37",
35
+ "@progress/kendo-angular-icons": "24.0.0-develop.37",
36
+ "@progress/kendo-angular-l10n": "24.0.0-develop.37",
37
+ "@progress/kendo-angular-pager": "24.0.0-develop.37",
38
38
  "rxjs": "^6.5.3 || ^7.0.0"
39
39
  },
40
40
  "dependencies": {
41
41
  "tslib": "^2.3.1",
42
- "@progress/kendo-angular-schematics": "24.0.0-develop.36"
42
+ "@progress/kendo-angular-schematics": "24.0.0-develop.37"
43
43
  },
44
44
  "schematics": "./schematics/collection.json",
45
45
  "module": "fesm2022/progress-kendo-angular-listview.mjs",
@@ -9,12 +9,12 @@ const schematics_1 = require("@angular-devkit/schematics");
9
9
  function default_1(options) {
10
10
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'ListViewModule', package: 'listview', peerDependencies: {
11
11
  // Peers of pager
12
- '@progress/kendo-angular-dropdowns': '24.0.0-develop.36',
13
- '@progress/kendo-angular-treeview': '24.0.0-develop.36',
14
- '@progress/kendo-angular-inputs': '24.0.0-develop.36',
15
- '@progress/kendo-angular-intl': '24.0.0-develop.36',
16
- '@progress/kendo-angular-l10n': '24.0.0-develop.36',
17
- '@progress/kendo-angular-popup': '24.0.0-develop.36',
12
+ '@progress/kendo-angular-dropdowns': '24.0.0-develop.37',
13
+ '@progress/kendo-angular-treeview': '24.0.0-develop.37',
14
+ '@progress/kendo-angular-inputs': '24.0.0-develop.37',
15
+ '@progress/kendo-angular-intl': '24.0.0-develop.37',
16
+ '@progress/kendo-angular-l10n': '24.0.0-develop.37',
17
+ '@progress/kendo-angular-popup': '24.0.0-develop.37',
18
18
  '@progress/kendo-drawing': '^1.17.2',
19
19
  // Peer of icons
20
20
  '@progress/kendo-svg-icons': '^4.0.0'
@@ -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 ListView has no data to display.
9
+ * To define a no-data template, nest an `<ng-template>` tag
10
+ * with the `kendoListViewNoDataTemplate` directive inside the `<kendo-listview>` tag
11
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/templates#no-data-template)).
12
+ *
13
+ * @example
14
+ * ```html
15
+ * <kendo-listview [data]="[]">
16
+ * <ng-template kendoListViewNoDataTemplate>
17
+ * No items to display.
18
+ * </ng-template>
19
+ * </kendo-listview>
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, "[kendoListViewNoDataTemplate]", never, {}, {}, never, never, true, never>;
27
+ }