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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/esm2022/column-menu/column-list.component.mjs +77 -71
  2. package/esm2022/column-menu/column-menu-autosize-all.component.mjs +12 -11
  3. package/esm2022/column-menu/column-menu-autosize.component.mjs +12 -11
  4. package/esm2022/column-menu/column-menu-item.component.mjs +137 -57
  5. package/esm2022/column-menu/column-menu.component.mjs +145 -122
  6. package/esm2022/editing/add-command.directive.mjs +27 -17
  7. package/esm2022/editing/base-command.directive.mjs +27 -17
  8. package/esm2022/editing/cancel-command.directive.mjs +27 -17
  9. package/esm2022/editing/edit-command.directive.mjs +27 -17
  10. package/esm2022/editing/remove-command.directive.mjs +27 -17
  11. package/esm2022/editing/save-command.directive.mjs +27 -17
  12. package/esm2022/excel/excel-command.directive.mjs +27 -17
  13. package/esm2022/filtering/cell/filter-cell-operators.component.mjs +20 -17
  14. package/esm2022/filtering/cell/filter-cell.component.mjs +35 -33
  15. package/esm2022/filtering/filter-row.component.mjs +26 -23
  16. package/esm2022/filtering/menu/boolean-filter-menu.component.mjs +32 -29
  17. package/esm2022/filtering/menu/date-filter-menu.component.mjs +52 -49
  18. package/esm2022/filtering/menu/filter-menu-container.component.mjs +75 -73
  19. package/esm2022/filtering/menu/numeric-filter-menu.component.mjs +50 -47
  20. package/esm2022/filtering/menu/string-filter-menu.component.mjs +36 -33
  21. package/esm2022/navigation/navigation.service.mjs +4 -4
  22. package/esm2022/package-metadata.mjs +2 -2
  23. package/esm2022/pdf/pdf-command.directive.mjs +27 -17
  24. package/esm2022/rendering/cell.component.mjs +167 -145
  25. package/esm2022/rendering/common/col-group.component.mjs +10 -8
  26. package/esm2022/rendering/header/header.component.mjs +373 -333
  27. package/esm2022/rendering/list.component.mjs +187 -160
  28. package/esm2022/rendering/table-body.component.mjs +199 -169
  29. package/esm2022/rendering/toolbar/toolbar.component.mjs +15 -13
  30. package/esm2022/treelist.component.mjs +896 -849
  31. package/fesm2022/progress-kendo-angular-treelist.mjs +2757 -2364
  32. package/package.json +18 -18
  33. package/schematics/ngAdd/index.js +3 -3
@@ -4,7 +4,6 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Component, Input } from '@angular/core';
6
6
  import { columnsToRender } from '../../columns/column-common';
7
- import { NgFor } from '@angular/common';
8
7
  import * as i0 from "@angular/core";
9
8
  /**
10
9
  * @hidden
@@ -18,19 +17,22 @@ export class ColGroupComponent {
18
17
  return index;
19
18
  }
20
19
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ColGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
21
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: ColGroupComponent, isStandalone: true, selector: "[kendoTreeListColGroup]", inputs: { columns: "columns" }, ngImport: i0, template: `
22
- <col *ngFor="let column of columnsToRender; trackBy: trackBy;" [style.width.px]="column.width"/>
23
- `, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
20
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: ColGroupComponent, isStandalone: true, selector: "[kendoTreeListColGroup]", inputs: { columns: "columns" }, ngImport: i0, template: `
21
+ @for (column of columnsToRender; track trackBy($index, column)) {
22
+ <col [style.width.px]="column.width"/>
23
+ }
24
+ `, isInline: true });
24
25
  }
25
26
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ColGroupComponent, decorators: [{
26
27
  type: Component,
27
28
  args: [{
28
29
  selector: '[kendoTreeListColGroup]',
29
30
  template: `
30
- <col *ngFor="let column of columnsToRender; trackBy: trackBy;" [style.width.px]="column.width"/>
31
- `,
32
- standalone: true,
33
- imports: [NgFor]
31
+ @for (column of columnsToRender; track trackBy($index, column)) {
32
+ <col [style.width.px]="column.width"/>
33
+ }
34
+ `,
35
+ standalone: true
34
36
  }]
35
37
  }], propDecorators: { columns: [{
36
38
  type: Input