@progress/kendo-angular-listview 4.0.4 → 11.0.0-develop.101

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.
Files changed (85) hide show
  1. package/LICENSE.md +1 -1
  2. package/NOTICE.txt +4 -4
  3. package/README.md +1 -1
  4. package/data-binding/data-binding.directive.d.ts +1 -1
  5. package/editing/commands/add-command.directive.d.ts +2 -2
  6. package/editing/commands/cancel-command.directive.d.ts +2 -2
  7. package/editing/commands/edit-command.directive.d.ts +2 -2
  8. package/editing/commands/remove-command.directive.d.ts +2 -2
  9. package/editing/commands/save-command.directive.d.ts +2 -2
  10. package/editing/edit-template.directive.d.ts +1 -1
  11. package/editing/edit.service.d.ts +1 -1
  12. package/editing/events/add-event-args.interface.d.ts +1 -1
  13. package/editing/events/cancel-event-args.interface.d.ts +2 -3
  14. package/editing/events/edit-event-args.interface.d.ts +1 -1
  15. package/editing/events/remove-event-args.interface.d.ts +1 -1
  16. package/editing/events/save-event-args.interface.d.ts +1 -1
  17. package/{esm2015/data-binding/data-binding.directive.js → esm2020/data-binding/data-binding.directive.mjs} +5 -4
  18. package/{esm2015/editing/commands/add-command.directive.js → esm2020/editing/commands/add-command.directive.mjs} +34 -7
  19. package/{esm2015/editing/commands/cancel-command.directive.js → esm2020/editing/commands/cancel-command.directive.mjs} +34 -7
  20. package/{esm2015/editing/commands/edit-command.directive.js → esm2020/editing/commands/edit-command.directive.mjs} +34 -7
  21. package/{esm2015/editing/commands/remove-command.directive.js → esm2020/editing/commands/remove-command.directive.mjs} +34 -7
  22. package/{esm2015/editing/commands/save-command.directive.js → esm2020/editing/commands/save-command.directive.mjs} +34 -7
  23. package/{esm2015/editing/edit-template.directive.js → esm2020/editing/edit-template.directive.mjs} +5 -5
  24. package/{esm2015/editing/edit.service.js → esm2020/editing/edit.service.mjs} +5 -5
  25. package/{esm2015/editing/events/add-event-args.interface.js → esm2020/editing/events/add-event-args.interface.mjs} +1 -1
  26. package/{esm2015/editing/events/cancel-event-args.interface.js → esm2020/editing/events/cancel-event-args.interface.mjs} +1 -1
  27. package/{esm2015/editing/events/edit-event-args.interface.js → esm2020/editing/events/edit-event-args.interface.mjs} +1 -1
  28. package/{esm2015/editing/events/remove-event-args.interface.js → esm2020/editing/events/remove-event-args.interface.mjs} +1 -1
  29. package/esm2020/editing/events/save-event-args.interface.mjs +5 -0
  30. package/{esm2015/main.js → esm2020/index.mjs} +1 -1
  31. package/{esm2015/listview.component.js → esm2020/listview.component.mjs} +6 -9
  32. package/{esm2015/listview.module.js → esm2020/listview.module.mjs} +12 -8
  33. package/esm2020/models/listview-data-result.mjs +5 -0
  34. package/esm2020/models/page-change-event.mjs +5 -0
  35. package/{esm2015/models/page-size-change-event.js → esm2020/models/page-size-change-event.mjs} +1 -1
  36. package/esm2020/models/page-size-item.mjs +5 -0
  37. package/esm2020/models/pager-position.mjs +5 -0
  38. package/esm2020/models/pager-settings.mjs +5 -0
  39. package/esm2020/models/pager-type.mjs +5 -0
  40. package/esm2020/models/scroll-bottom-event.mjs +5 -0
  41. package/{esm2015/navigation/listview-navigable-item.directive.js → esm2020/navigation/listview-navigable-item.directive.mjs} +6 -5
  42. package/{esm2015/navigation/navigation.service.js → esm2020/navigation/navigation.service.mjs} +8 -6
  43. package/{esm2015/package-metadata.js → esm2020/package-metadata.mjs} +3 -3
  44. package/{esm2015/kendo-angular-listview.js → esm2020/progress-kendo-angular-listview.mjs} +2 -2
  45. package/{esm2015/templates/footer-template.directive.js → esm2020/templates/footer-template.directive.mjs} +5 -5
  46. package/{esm2015/templates/header-template.directive.js → esm2020/templates/header-template.directive.mjs} +5 -5
  47. package/{esm2015/templates/item-template.directive.js → esm2020/templates/item-template.directive.mjs} +5 -5
  48. package/{esm2015/templates/loader-template.directive.js → esm2020/templates/loader-template.directive.mjs} +5 -5
  49. package/{esm2015/templates/template-context.directive.js → esm2020/templates/template-context.directive.mjs} +5 -5
  50. package/{esm2015/utils.js → esm2020/utils.mjs} +1 -1
  51. package/fesm2015/progress-kendo-angular-listview.mjs +1801 -0
  52. package/{fesm2015/kendo-angular-listview.js → fesm2020/progress-kendo-angular-listview.mjs} +193 -74
  53. package/{main.d.ts → index.d.ts} +1 -1
  54. package/listview.component.d.ts +1 -1
  55. package/listview.module.d.ts +3 -2
  56. package/models/listview-data-result.d.ts +1 -1
  57. package/models/page-change-event.d.ts +2 -3
  58. package/models/page-size-change-event.d.ts +1 -1
  59. package/models/page-size-item.d.ts +1 -1
  60. package/models/pager-position.d.ts +1 -1
  61. package/models/pager-settings.d.ts +1 -1
  62. package/models/pager-type.d.ts +1 -1
  63. package/models/scroll-bottom-event.d.ts +1 -1
  64. package/navigation/listview-navigable-item.directive.d.ts +1 -1
  65. package/navigation/navigation.service.d.ts +1 -1
  66. package/package-metadata.d.ts +1 -1
  67. package/package.json +34 -60
  68. package/{kendo-angular-listview.d.ts → progress-kendo-angular-listview.d.ts} +2 -2
  69. package/schematics/ngAdd/index.js +4 -6
  70. package/templates/footer-template.directive.d.ts +1 -1
  71. package/templates/header-template.directive.d.ts +1 -1
  72. package/templates/item-template.directive.d.ts +1 -1
  73. package/templates/loader-template.directive.d.ts +1 -1
  74. package/templates/template-context.directive.d.ts +1 -1
  75. package/utils.d.ts +1 -1
  76. package/bundles/kendo-angular-listview.umd.js +0 -5
  77. package/esm2015/editing/events/save-event-args.interface.js +0 -5
  78. package/esm2015/models/listview-data-result.js +0 -5
  79. package/esm2015/models/page-change-event.js +0 -5
  80. package/esm2015/models/page-size-item.js +0 -5
  81. package/esm2015/models/pager-position.js +0 -5
  82. package/esm2015/models/pager-settings.js +0 -5
  83. package/esm2015/models/pager-type.js +0 -5
  84. package/esm2015/models/scroll-bottom-event.js +0 -5
  85. package/schematics/ngAdd/index.js.map +0 -1
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import * as i0 from '@angular/core';
@@ -17,6 +17,8 @@ import { PageSizeChangeEvent as PageSizeChangeEvent$1, PagerModule } from '@prog
17
17
  import * as i4 from '@angular/common';
18
18
  import { CommonModule } from '@angular/common';
19
19
  import { Button } from '@progress/kendo-angular-buttons';
20
+ import * as i3$1 from '@progress/kendo-angular-icons';
21
+ import { IconsModule } from '@progress/kendo-angular-icons';
20
22
 
21
23
  /**
22
24
  * @hidden
@@ -25,9 +27,9 @@ const packageMetadata = {
25
27
  name: '@progress/kendo-angular-listview',
26
28
  productName: 'Kendo UI for Angular',
27
29
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
28
- publishDate: 1669715421,
30
+ publishDate: 1673510728,
29
31
  version: '',
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'
32
+ licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
31
33
  };
32
34
 
33
35
  const LISTVIEW_ITEM_SELECTOR = '.k-listview-item';
@@ -185,14 +187,16 @@ class NavigationService {
185
187
  case Keys.ArrowDown:
186
188
  this.navigateToNext(totalItemsCount);
187
189
  break;
188
- case Keys.Home:
190
+ case Keys.Home: {
189
191
  const firstIndex = 0;
190
192
  this.navigateTo(firstIndex);
191
193
  break;
192
- case Keys.End:
194
+ }
195
+ case Keys.End: {
193
196
  const lastIndex = totalItemsCount - 1;
194
197
  this.navigateTo(lastIndex);
195
198
  break;
199
+ }
196
200
  default: return;
197
201
  }
198
202
  // the following line is executed only if the pressed key matches one of the listview hotkeys -
@@ -273,9 +277,9 @@ class NavigationService {
273
277
  this.navigateTo(nextIndex);
274
278
  }
275
279
  }
276
- NavigationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: NavigationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
277
- NavigationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: NavigationService });
278
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: NavigationService, decorators: [{
280
+ NavigationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NavigationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
281
+ NavigationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NavigationService });
282
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NavigationService, decorators: [{
279
283
  type: Injectable
280
284
  }] });
281
285
 
@@ -327,9 +331,9 @@ class ListViewNavigableItemDirective {
327
331
  }
328
332
  }
329
333
  }
330
- ListViewNavigableItemDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ListViewNavigableItemDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: NavigationService }], target: i0.ɵɵFactoryTarget.Directive });
331
- ListViewNavigableItemDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: ListViewNavigableItemDirective, selector: "[kendoListViewNavigableItem]", inputs: { index: "index" }, usesOnChanges: true, ngImport: i0 });
332
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ListViewNavigableItemDirective, decorators: [{
334
+ ListViewNavigableItemDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListViewNavigableItemDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: NavigationService }], target: i0.ɵɵFactoryTarget.Directive });
335
+ ListViewNavigableItemDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: ListViewNavigableItemDirective, selector: "[kendoListViewNavigableItem]", inputs: { index: "index" }, usesOnChanges: true, ngImport: i0 });
336
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListViewNavigableItemDirective, decorators: [{
333
337
  type: Directive,
334
338
  args: [{
335
339
  selector: '[kendoListViewNavigableItem]'
@@ -354,9 +358,9 @@ class ItemTemplateDirective {
354
358
  this.templateRef = templateRef;
355
359
  }
356
360
  }
357
- ItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ItemTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
358
- ItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: ItemTemplateDirective, selector: "[kendoListViewItemTemplate]", ngImport: i0 });
359
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ItemTemplateDirective, decorators: [{
361
+ ItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ItemTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
362
+ ItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: ItemTemplateDirective, selector: "[kendoListViewItemTemplate]", ngImport: i0 });
363
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ItemTemplateDirective, decorators: [{
360
364
  type: Directive,
361
365
  args: [{
362
366
  selector: '[kendoListViewItemTemplate]'
@@ -373,9 +377,9 @@ class HeaderTemplateDirective {
373
377
  this.templateRef = templateRef;
374
378
  }
375
379
  }
376
- HeaderTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: HeaderTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
377
- HeaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: HeaderTemplateDirective, selector: "[kendoListViewHeaderTemplate]", ngImport: i0 });
378
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: HeaderTemplateDirective, decorators: [{
380
+ HeaderTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: HeaderTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
381
+ HeaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: HeaderTemplateDirective, selector: "[kendoListViewHeaderTemplate]", ngImport: i0 });
382
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: HeaderTemplateDirective, decorators: [{
379
383
  type: Directive,
380
384
  args: [{
381
385
  selector: '[kendoListViewHeaderTemplate]'
@@ -392,9 +396,9 @@ class FooterTemplateDirective {
392
396
  this.templateRef = templateRef;
393
397
  }
394
398
  }
395
- FooterTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: FooterTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
396
- FooterTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: FooterTemplateDirective, selector: "[kendoListViewFooterTemplate]", ngImport: i0 });
397
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: FooterTemplateDirective, decorators: [{
399
+ FooterTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FooterTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
400
+ FooterTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: FooterTemplateDirective, selector: "[kendoListViewFooterTemplate]", ngImport: i0 });
401
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FooterTemplateDirective, decorators: [{
398
402
  type: Directive,
399
403
  args: [{
400
404
  selector: '[kendoListViewFooterTemplate]'
@@ -411,9 +415,9 @@ class LoaderTemplateDirective {
411
415
  this.templateRef = templateRef;
412
416
  }
413
417
  }
414
- LoaderTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: LoaderTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
415
- LoaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: LoaderTemplateDirective, selector: "[kendoListViewLoaderTemplate]", ngImport: i0 });
416
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: LoaderTemplateDirective, decorators: [{
418
+ LoaderTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: LoaderTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
419
+ LoaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: LoaderTemplateDirective, selector: "[kendoListViewLoaderTemplate]", ngImport: i0 });
420
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: LoaderTemplateDirective, decorators: [{
417
421
  type: Directive,
418
422
  args: [{
419
423
  selector: '[kendoListViewLoaderTemplate]'
@@ -437,9 +441,9 @@ class EditTemplateDirective {
437
441
  this.templateRef = templateRef;
438
442
  }
439
443
  }
440
- EditTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
441
- EditTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: EditTemplateDirective, selector: "[kendoListViewEditTemplate]", ngImport: i0 });
442
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditTemplateDirective, decorators: [{
444
+ EditTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EditTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
445
+ EditTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: EditTemplateDirective, selector: "[kendoListViewEditTemplate]", ngImport: i0 });
446
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EditTemplateDirective, decorators: [{
443
447
  type: Directive,
444
448
  args: [{
445
449
  selector: '[kendoListViewEditTemplate]'
@@ -549,9 +553,9 @@ class EditService {
549
553
  });
550
554
  }
551
555
  }
552
- EditService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
553
- EditService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditService });
554
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditService, decorators: [{
556
+ EditService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EditService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
557
+ EditService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EditService });
558
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EditService, decorators: [{
555
559
  type: Injectable
556
560
  }], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
557
561
 
@@ -893,8 +897,8 @@ class ListViewComponent {
893
897
  this[action].emit(args);
894
898
  }
895
899
  }
896
- ListViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ListViewComponent, deps: [{ token: i0.NgZone }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: EditService }, { token: NavigationService }], target: i0.ɵɵFactoryTarget.Component });
897
- ListViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ListViewComponent, selector: "kendo-listview", inputs: { data: "data", loading: "loading", containerStyle: "containerStyle", itemStyle: "itemStyle", containerClass: "containerClass", itemClass: "itemClass", containerLabel: "containerLabel", containerRole: "containerRole", listItemRole: "listItemRole", navigable: "navigable", pageSize: "pageSize", skip: "skip", pageable: "pageable", height: "height" }, outputs: { scrollBottom: "scrollBottom", pageChange: "pageChange", pageSizeChange: "pageSizeChange", edit: "edit", cancel: "cancel", save: "save", remove: "remove", add: "add" }, host: { properties: { "class.k-widget": "this.className", "class.k-listview": "this.className", "class.k-listview-bordered": "this.className", "class.k-d-flex": "this.className" } }, providers: [
900
+ ListViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListViewComponent, deps: [{ token: i0.NgZone }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: EditService }, { token: NavigationService }], target: i0.ɵɵFactoryTarget.Component });
901
+ ListViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ListViewComponent, selector: "kendo-listview", inputs: { data: "data", loading: "loading", containerStyle: "containerStyle", itemStyle: "itemStyle", containerClass: "containerClass", itemClass: "itemClass", containerLabel: "containerLabel", containerRole: "containerRole", listItemRole: "listItemRole", navigable: "navigable", pageSize: "pageSize", skip: "skip", pageable: "pageable", height: "height" }, outputs: { scrollBottom: "scrollBottom", pageChange: "pageChange", pageSizeChange: "pageSizeChange", edit: "edit", cancel: "cancel", save: "save", remove: "remove", add: "add" }, host: { properties: { "class.k-listview": "this.className", "class.k-listview-bordered": "this.className", "class.k-d-flex": "this.className" } }, providers: [
898
902
  EditService,
899
903
  NavigationService,
900
904
  LocalizationService,
@@ -1029,8 +1033,8 @@ ListViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
1029
1033
  >
1030
1034
  </kendo-datapager>
1031
1035
  </ng-template>
1032
- `, isInline: true, components: [{ type: i3.PagerComponent, selector: "kendo-datapager", inputs: ["total", "skip", "pageSize", "buttonCount", "info", "type", "pageSizeValues", "previousNext", "navigable"], outputs: ["pageChange", "pageSizeChange"], exportAs: ["kendoDataPager"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i5.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: ListViewNavigableItemDirective, selector: "[kendoListViewNavigableItem]", inputs: ["index"] }, { type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
1033
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ListViewComponent, decorators: [{
1036
+ `, isInline: true, components: [{ type: i3.PagerComponent, selector: "kendo-datapager", inputs: ["total", "skip", "pageSize", "buttonCount", "info", "type", "pageSizeValues", "previousNext", "navigable", "size"], outputs: ["pageChange", "pageSizeChange"], exportAs: ["kendoDataPager"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i5.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: ListViewNavigableItemDirective, selector: "[kendoListViewNavigableItem]", inputs: ["index"] }, { type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
1037
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListViewComponent, decorators: [{
1034
1038
  type: Component,
1035
1039
  args: [{
1036
1040
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -1175,9 +1179,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
1175
1179
  `
1176
1180
  }]
1177
1181
  }], ctorParameters: function () { return [{ type: i0.NgZone }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: EditService }, { type: NavigationService }]; }, propDecorators: { className: [{
1178
- type: HostBinding,
1179
- args: ['class.k-widget']
1180
- }, {
1181
1182
  type: HostBinding,
1182
1183
  args: ['class.k-listview']
1183
1184
  }, {
@@ -1297,9 +1298,9 @@ class DataBindingDirective {
1297
1298
  };
1298
1299
  }
1299
1300
  }
1300
- DataBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DataBindingDirective, deps: [{ token: ListViewComponent }], target: i0.ɵɵFactoryTarget.Directive });
1301
- DataBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: DataBindingDirective, selector: "[kendoListViewBinding]", inputs: { data: ["kendoListViewBinding", "data"] }, ngImport: i0 });
1302
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DataBindingDirective, decorators: [{
1301
+ DataBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DataBindingDirective, deps: [{ token: ListViewComponent }], target: i0.ɵɵFactoryTarget.Directive });
1302
+ DataBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: DataBindingDirective, selector: "[kendoListViewBinding]", inputs: { data: ["kendoListViewBinding", "data"] }, ngImport: i0 });
1303
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DataBindingDirective, decorators: [{
1303
1304
  type: Directive,
1304
1305
  args: [{
1305
1306
  selector: '[kendoListViewBinding]'
@@ -1348,12 +1349,35 @@ class EditCommandDirective extends Button {
1348
1349
  this.editService.beginEdit(index);
1349
1350
  }
1350
1351
  }
1351
- EditCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditCommandDirective, deps: [{ token: EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
1352
- EditCommandDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: EditCommandDirective, selector: "[kendoListViewEditCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
1353
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditCommandDirective, decorators: [{
1354
- type: Directive,
1352
+ EditCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EditCommandDirective, deps: [{ token: EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1353
+ EditCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: EditCommandDirective, selector: "[kendoListViewEditCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
1354
+ <kendo-icon-wrapper
1355
+ *ngIf="icon || svgIcon"
1356
+ innerCssClass="k-button-icon"
1357
+ [name]="icon"
1358
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
1359
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
1360
+ <img [src]="imageUrl" class="k-image" role="presentation" />
1361
+ </span>
1362
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
1363
+ <span class="k-button-text"><ng-content></ng-content></span>
1364
+ `, isInline: true, components: [{ type: i3$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
1365
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EditCommandDirective, decorators: [{
1366
+ type: Component,
1355
1367
  args: [{
1356
- selector: '[kendoListViewEditCommand]'
1368
+ selector: '[kendoListViewEditCommand]',
1369
+ template: `
1370
+ <kendo-icon-wrapper
1371
+ *ngIf="icon || svgIcon"
1372
+ innerCssClass="k-button-icon"
1373
+ [name]="icon"
1374
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
1375
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
1376
+ <img [src]="imageUrl" class="k-image" role="presentation" />
1377
+ </span>
1378
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
1379
+ <span class="k-button-text"><ng-content></ng-content></span>
1380
+ `
1357
1381
  }]
1358
1382
  }], ctorParameters: function () { return [{ type: EditService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { clickHandler: [{
1359
1383
  type: HostListener,
@@ -1389,12 +1413,35 @@ class AddCommandDirective extends Button {
1389
1413
  this.editService.beginAdd();
1390
1414
  }
1391
1415
  }
1392
- AddCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: AddCommandDirective, deps: [{ token: EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
1393
- AddCommandDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: AddCommandDirective, selector: "[kendoListViewAddCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
1394
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: AddCommandDirective, decorators: [{
1395
- type: Directive,
1416
+ AddCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AddCommandDirective, deps: [{ token: EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1417
+ AddCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AddCommandDirective, selector: "[kendoListViewAddCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
1418
+ <kendo-icon-wrapper
1419
+ *ngIf="icon || svgIcon"
1420
+ innerCssClass="k-button-icon"
1421
+ [name]="icon"
1422
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
1423
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
1424
+ <img [src]="imageUrl" class="k-image" role="presentation" />
1425
+ </span>
1426
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
1427
+ <span class="k-button-text"><ng-content></ng-content></span>
1428
+ `, isInline: true, components: [{ type: i3$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
1429
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AddCommandDirective, decorators: [{
1430
+ type: Component,
1396
1431
  args: [{
1397
- selector: '[kendoListViewAddCommand]'
1432
+ selector: '[kendoListViewAddCommand]',
1433
+ template: `
1434
+ <kendo-icon-wrapper
1435
+ *ngIf="icon || svgIcon"
1436
+ innerCssClass="k-button-icon"
1437
+ [name]="icon"
1438
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
1439
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
1440
+ <img [src]="imageUrl" class="k-image" role="presentation" />
1441
+ </span>
1442
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
1443
+ <span class="k-button-text"><ng-content></ng-content></span>
1444
+ `
1398
1445
  }]
1399
1446
  }], ctorParameters: function () { return [{ type: EditService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { clickHandler: [{
1400
1447
  type: HostListener,
@@ -1445,12 +1492,35 @@ class SaveCommandDirective extends Button {
1445
1492
  }
1446
1493
  }
1447
1494
  }
1448
- SaveCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: SaveCommandDirective, deps: [{ token: EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
1449
- SaveCommandDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: SaveCommandDirective, selector: "[kendoListViewSaveCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
1450
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: SaveCommandDirective, decorators: [{
1451
- type: Directive,
1495
+ SaveCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SaveCommandDirective, deps: [{ token: EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1496
+ SaveCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: SaveCommandDirective, selector: "[kendoListViewSaveCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
1497
+ <kendo-icon-wrapper
1498
+ *ngIf="icon || svgIcon"
1499
+ innerCssClass="k-button-icon"
1500
+ [name]="icon"
1501
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
1502
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
1503
+ <img [src]="imageUrl" class="k-image" role="presentation" />
1504
+ </span>
1505
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
1506
+ <span class="k-button-text"><ng-content></ng-content></span>
1507
+ `, isInline: true, components: [{ type: i3$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
1508
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SaveCommandDirective, decorators: [{
1509
+ type: Component,
1452
1510
  args: [{
1453
- selector: '[kendoListViewSaveCommand]'
1511
+ selector: '[kendoListViewSaveCommand]',
1512
+ template: `
1513
+ <kendo-icon-wrapper
1514
+ *ngIf="icon || svgIcon"
1515
+ innerCssClass="k-button-icon"
1516
+ [name]="icon"
1517
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
1518
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
1519
+ <img [src]="imageUrl" class="k-image" role="presentation" />
1520
+ </span>
1521
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
1522
+ <span class="k-button-text"><ng-content></ng-content></span>
1523
+ `
1454
1524
  }]
1455
1525
  }], ctorParameters: function () { return [{ type: EditService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { clickHandler: [{
1456
1526
  type: HostListener,
@@ -1501,12 +1571,35 @@ class CancelCommandDirective extends Button {
1501
1571
  }
1502
1572
  }
1503
1573
  }
1504
- CancelCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: CancelCommandDirective, deps: [{ token: EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
1505
- CancelCommandDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: CancelCommandDirective, selector: "[kendoListViewCancelCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
1506
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: CancelCommandDirective, decorators: [{
1507
- type: Directive,
1574
+ CancelCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CancelCommandDirective, deps: [{ token: EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1575
+ CancelCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CancelCommandDirective, selector: "[kendoListViewCancelCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
1576
+ <kendo-icon-wrapper
1577
+ *ngIf="icon || svgIcon"
1578
+ innerCssClass="k-button-icon"
1579
+ [name]="icon"
1580
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
1581
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
1582
+ <img [src]="imageUrl" class="k-image" role="presentation" />
1583
+ </span>
1584
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
1585
+ <span class="k-button-text"><ng-content></ng-content></span>
1586
+ `, isInline: true, components: [{ type: i3$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
1587
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CancelCommandDirective, decorators: [{
1588
+ type: Component,
1508
1589
  args: [{
1509
- selector: '[kendoListViewCancelCommand]'
1590
+ selector: '[kendoListViewCancelCommand]',
1591
+ template: `
1592
+ <kendo-icon-wrapper
1593
+ *ngIf="icon || svgIcon"
1594
+ innerCssClass="k-button-icon"
1595
+ [name]="icon"
1596
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
1597
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
1598
+ <img [src]="imageUrl" class="k-image" role="presentation" />
1599
+ </span>
1600
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
1601
+ <span class="k-button-text"><ng-content></ng-content></span>
1602
+ `
1510
1603
  }]
1511
1604
  }], ctorParameters: function () { return [{ type: EditService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { clickHandler: [{
1512
1605
  type: HostListener,
@@ -1544,12 +1637,35 @@ class RemoveCommandDirective extends Button {
1544
1637
  this.editService.remove(index);
1545
1638
  }
1546
1639
  }
1547
- RemoveCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: RemoveCommandDirective, deps: [{ token: EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
1548
- RemoveCommandDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: RemoveCommandDirective, selector: "[kendoListViewRemoveCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
1549
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: RemoveCommandDirective, decorators: [{
1550
- type: Directive,
1640
+ RemoveCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: RemoveCommandDirective, deps: [{ token: EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1641
+ RemoveCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: RemoveCommandDirective, selector: "[kendoListViewRemoveCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
1642
+ <kendo-icon-wrapper
1643
+ *ngIf="icon || svgIcon"
1644
+ innerCssClass="k-button-icon"
1645
+ [name]="icon"
1646
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
1647
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
1648
+ <img [src]="imageUrl" class="k-image" role="presentation" />
1649
+ </span>
1650
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
1651
+ <span class="k-button-text"><ng-content></ng-content></span>
1652
+ `, isInline: true, components: [{ type: i3$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
1653
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: RemoveCommandDirective, decorators: [{
1654
+ type: Component,
1551
1655
  args: [{
1552
- selector: '[kendoListViewRemoveCommand]'
1656
+ selector: '[kendoListViewRemoveCommand]',
1657
+ template: `
1658
+ <kendo-icon-wrapper
1659
+ *ngIf="icon || svgIcon"
1660
+ innerCssClass="k-button-icon"
1661
+ [name]="icon"
1662
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
1663
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
1664
+ <img [src]="imageUrl" class="k-image" role="presentation" />
1665
+ </span>
1666
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
1667
+ <span class="k-button-text"><ng-content></ng-content></span>
1668
+ `
1553
1669
  }]
1554
1670
  }], ctorParameters: function () { return [{ type: EditService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { clickHandler: [{
1555
1671
  type: HostListener,
@@ -1573,9 +1689,9 @@ class TemplateContextDirective {
1573
1689
  }
1574
1690
  }
1575
1691
  }
1576
- TemplateContextDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TemplateContextDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
1577
- TemplateContextDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: TemplateContextDirective, selector: "[templateContext]", inputs: { templateContext: "templateContext" }, ngImport: i0 });
1578
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TemplateContextDirective, decorators: [{
1692
+ TemplateContextDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TemplateContextDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
1693
+ TemplateContextDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: TemplateContextDirective, selector: "[templateContext]", inputs: { templateContext: "templateContext" }, ngImport: i0 });
1694
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TemplateContextDirective, decorators: [{
1579
1695
  type: Directive,
1580
1696
  args: [{
1581
1697
  selector: '[templateContext]' // eslint-disable-line
@@ -1615,8 +1731,8 @@ const EDITING_DIRECTIVES = [
1615
1731
  */
1616
1732
  class ListViewModule {
1617
1733
  }
1618
- ListViewModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ListViewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1619
- ListViewModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ListViewModule, declarations: [ItemTemplateDirective,
1734
+ ListViewModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListViewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1735
+ ListViewModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListViewModule, declarations: [ItemTemplateDirective,
1620
1736
  HeaderTemplateDirective,
1621
1737
  FooterTemplateDirective,
1622
1738
  LoaderTemplateDirective, DataBindingDirective, EditTemplateDirective,
@@ -1628,7 +1744,8 @@ ListViewModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
1628
1744
  TemplateContextDirective,
1629
1745
  ListViewNavigableItemDirective], imports: [CommonModule,
1630
1746
  PagerModule,
1631
- EventsModule], exports: [ItemTemplateDirective,
1747
+ EventsModule,
1748
+ IconsModule], exports: [ItemTemplateDirective,
1632
1749
  HeaderTemplateDirective,
1633
1750
  FooterTemplateDirective,
1634
1751
  LoaderTemplateDirective, DataBindingDirective, EditTemplateDirective,
@@ -1639,13 +1756,14 @@ ListViewModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
1639
1756
  AddCommandDirective, ListViewComponent,
1640
1757
  CommonModule,
1641
1758
  EventsModule] });
1642
- ListViewModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ListViewModule, imports: [[
1759
+ ListViewModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListViewModule, imports: [[
1643
1760
  CommonModule,
1644
1761
  PagerModule,
1645
- EventsModule
1762
+ EventsModule,
1763
+ IconsModule
1646
1764
  ], CommonModule,
1647
1765
  EventsModule] });
1648
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ListViewModule, decorators: [{
1766
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListViewModule, decorators: [{
1649
1767
  type: NgModule,
1650
1768
  args: [{
1651
1769
  declarations: [
@@ -1667,7 +1785,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
1667
1785
  imports: [
1668
1786
  CommonModule,
1669
1787
  PagerModule,
1670
- EventsModule
1788
+ EventsModule,
1789
+ IconsModule
1671
1790
  ]
1672
1791
  }]
1673
1792
  }] });
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  export { ListViewComponent } from './listview.component';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { EventEmitter, NgZone, Renderer2, ElementRef, SimpleChanges, QueryList } from '@angular/core';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import * as i0 from "@angular/core";
@@ -20,6 +20,7 @@ import * as i14 from "./navigation/listview-navigable-item.directive";
20
20
  import * as i15 from "@angular/common";
21
21
  import * as i16 from "@progress/kendo-angular-pager";
22
22
  import * as i17 from "@progress/kendo-angular-common";
23
+ import * as i18 from "@progress/kendo-angular-icons";
23
24
  /**
24
25
  * The exported package module.
25
26
  *
@@ -34,6 +35,6 @@ import * as i17 from "@progress/kendo-angular-common";
34
35
  */
35
36
  export declare class ListViewModule {
36
37
  static ɵfac: i0.ɵɵFactoryDeclaration<ListViewModule, never>;
37
- static ɵmod: i0.ɵɵNgModuleDeclaration<ListViewModule, [typeof i1.ItemTemplateDirective, typeof i2.HeaderTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.LoaderTemplateDirective, typeof i5.DataBindingDirective, typeof i6.EditTemplateDirective, typeof i7.EditCommandDirective, typeof i8.CancelCommandDirective, typeof i9.SaveCommandDirective, typeof i10.RemoveCommandDirective, typeof i11.AddCommandDirective, typeof i12.ListViewComponent, typeof i13.TemplateContextDirective, typeof i14.ListViewNavigableItemDirective], [typeof i15.CommonModule, typeof i16.PagerModule, typeof i17.EventsModule], [typeof i1.ItemTemplateDirective, typeof i2.HeaderTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.LoaderTemplateDirective, typeof i5.DataBindingDirective, typeof i6.EditTemplateDirective, typeof i7.EditCommandDirective, typeof i8.CancelCommandDirective, typeof i9.SaveCommandDirective, typeof i10.RemoveCommandDirective, typeof i11.AddCommandDirective, typeof i12.ListViewComponent, typeof i15.CommonModule, typeof i17.EventsModule]>;
38
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ListViewModule, [typeof i1.ItemTemplateDirective, typeof i2.HeaderTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.LoaderTemplateDirective, typeof i5.DataBindingDirective, typeof i6.EditTemplateDirective, typeof i7.EditCommandDirective, typeof i8.CancelCommandDirective, typeof i9.SaveCommandDirective, typeof i10.RemoveCommandDirective, typeof i11.AddCommandDirective, typeof i12.ListViewComponent, typeof i13.TemplateContextDirective, typeof i14.ListViewNavigableItemDirective], [typeof i15.CommonModule, typeof i16.PagerModule, typeof i17.EventsModule, typeof i18.IconsModule], [typeof i1.ItemTemplateDirective, typeof i2.HeaderTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.LoaderTemplateDirective, typeof i5.DataBindingDirective, typeof i6.EditTemplateDirective, typeof i7.EditCommandDirective, typeof i8.CancelCommandDirective, typeof i9.SaveCommandDirective, typeof i10.RemoveCommandDirective, typeof i11.AddCommandDirective, typeof i12.ListViewComponent, typeof i15.CommonModule, typeof i17.EventsModule]>;
38
39
  static ɵinj: i0.ɵɵInjectorDeclaration<ListViewModule>;
39
40
  }
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { PageChangeEvent as PagerPageChangeEvent } from '@progress/kendo-angular-pager';
@@ -7,5 +7,4 @@ import { PageChangeEvent as PagerPageChangeEvent } from '@progress/kendo-angular
7
7
  * The arguments of the [`pageChange`]({% slug api_listview_listviewcomponent %}#toc-pagechange) event of the ListView
8
8
  * ([more details]({% slug paging_listview %}).
9
9
  */
10
- export interface PageChangeEvent extends PagerPageChangeEvent {
11
- }
10
+ export declare type PageChangeEvent = PagerPageChangeEvent;
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { PageSizeChangeEvent as PagerPageSizeChangeEvent } from "@progress/kendo-angular-pager";
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { PageSizeItem as PagerPageSizeItem } from '@progress/kendo-angular-pager';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { PagerType } from './pager-type';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { PagerType as PagerTypeSource } from '@progress/kendo-angular-pager';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ListViewComponent } from "../listview.component";
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ElementRef, Renderer2, OnChanges } from '@angular/core';