@progress/kendo-angular-treelist 25.1.0-develop.21 → 25.1.0-develop.22

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.
@@ -49,8 +49,8 @@ const packageMetadata = {
49
49
  productName: 'Kendo UI for Angular',
50
50
  productCode: 'KENDOUIANGULAR',
51
51
  productCodes: ['KENDOUIANGULAR'],
52
- publishDate: 1788250781,
53
- version: '25.1.0-develop.21',
52
+ publishDate: 1788265480,
53
+ version: '25.1.0-develop.22',
54
54
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
55
55
  };
56
56
 
@@ -5967,7 +5967,7 @@ const NON_DATA_ROW_CLASSES = 'k-grouping-row k-group-footer k-detail-row k-grid-
5967
5967
  /**
5968
5968
  * @hidden
5969
5969
  */
5970
- const EMPTY_ICON_CLASS = 'k-i-none k-svg-i-none';
5970
+ const EMPTY_ICON_CLASS = 'k-i-none k-svg-i-none k-none';
5971
5971
  /**
5972
5972
  * @hidden
5973
5973
  */
@@ -6298,11 +6298,6 @@ class CellComponent {
6298
6298
  chevronRightIcon = chevronRightIcon;
6299
6299
  chevronLeftIcon = chevronLeftIcon;
6300
6300
  reorderIcon = reorderIcon;
6301
- noneIcon = {
6302
- name: 'none',
6303
- content: '',
6304
- viewBox: '0 0 24 24'
6305
- };
6306
6301
  cellContext = {};
6307
6302
  _templateContext = {};
6308
6303
  _editTemplateContext = {};
@@ -6357,7 +6352,7 @@ class CellComponent {
6357
6352
  @case (false) {
6358
6353
  @if (column.expandable) {
6359
6354
  @for (item of level | levelItems : hasChildren && expandIcons; track $index) {
6360
- <kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon"></kendo-icon-wrapper>
6355
+ <span class="k-icon k-svg-icon k-none k-treelist-toggle" aria-hidden="true"></span>
6361
6356
  }
6362
6357
  @if (hasChildren && expandIcons && !loading) {
6363
6358
  <kendo-icon-wrapper innerCssClass="k-treelist-toggle"
@@ -6445,7 +6440,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
6445
6440
  @case (false) {
6446
6441
  @if (column.expandable) {
6447
6442
  @for (item of level | levelItems : hasChildren && expandIcons; track $index) {
6448
- <kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon"></kendo-icon-wrapper>
6443
+ <span class="k-icon k-svg-icon k-none k-treelist-toggle" aria-hidden="true"></span>
6449
6444
  }
6450
6445
  @if (hasChildren && expandIcons && !loading) {
6451
6446
  <kendo-icon-wrapper innerCssClass="k-treelist-toggle"
@@ -6590,7 +6585,7 @@ class LogicalRowDirective {
6590
6585
  totalColumns;
6591
6586
  uid = nextId();
6592
6587
  get hostRole() {
6593
- return this.logicalSlaveRow ? 'presentation' : 'row';
6588
+ return this.logicalSlaveRow ? 'none' : 'row';
6594
6589
  }
6595
6590
  get ariaRowIndex() {
6596
6591
  return this.logicalSlaveRow ? null : this.logicalRowIndex + 1;
@@ -6731,11 +6726,6 @@ class TableBodyComponent {
6731
6726
  expandIcons;
6732
6727
  trackBy = defaultTrackBy;
6733
6728
  totalColumns;
6734
- noneIcon = {
6735
- name: 'none',
6736
- content: '',
6737
- viewBox: '0 0 24 24'
6738
- };
6739
6729
  clickSubscription;
6740
6730
  l10nSubscription;
6741
6731
  cellKeydownSubscription;
@@ -6810,7 +6800,7 @@ class TableBodyComponent {
6810
6800
  return true;
6811
6801
  }
6812
6802
  ariaRowExpanded(item) {
6813
- return this.lockedColumnsCount < 1 ? Boolean(item.expanded) : undefined;
6803
+ return this.lockedColumnsCount < 1 && item.hasChildren ? Boolean(item.expanded) : undefined;
6814
6804
  }
6815
6805
  ariaRowSelected(item) {
6816
6806
  return this.lockedColumnsCount < 1 ? Boolean(item.selected) : undefined;
@@ -6825,7 +6815,7 @@ class TableBodyComponent {
6825
6815
  if (!this.selection.enabled) {
6826
6816
  return;
6827
6817
  }
6828
- return item.selected || this.isCellSelected(item.data, column, columnIndex);
6818
+ return item.selected || this.isCellSelected(item.data, column, columnIndex) ? true : undefined;
6829
6819
  }
6830
6820
  ngOnInit() {
6831
6821
  this.ngZone.runOutsideAngular(() => {
@@ -7098,7 +7088,7 @@ class TableBodyComponent {
7098
7088
  class="k-table-row{{isOdd(item) ? ' k-table-alt-row' : ''}}"
7099
7089
  [class.k-grid-edit-row]="isEditingRow(item)"
7100
7090
  [class.k-grid-add-row]="item.isNew"
7101
- [attr.aria-selected]="ariaRowSelected(item)"
7091
+ [attr.aria-selected]="ariaRowSelected(item) || undefined"
7102
7092
  [class.k-selected]="item.selected"
7103
7093
  [attr.data-treelist-view-index]="rowIndex">
7104
7094
  @for (column of columns; track trackByColumns($index, column); let columnIndex = $index) {
@@ -7160,7 +7150,7 @@ class TableBodyComponent {
7160
7150
  >
7161
7151
  @if ($any(column).expandable) {
7162
7152
  @for (item of item.level | levelItems; track $index) {
7163
- <kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon"></kendo-icon-wrapper>
7153
+ <span class="k-icon k-svg-icon k-none k-treelist-toggle" aria-hidden="true"></span>
7164
7154
  }
7165
7155
  }
7166
7156
  <ng-container [ngTemplateOutlet]="column.footerTemplateRef"
@@ -7179,7 +7169,7 @@ class TableBodyComponent {
7179
7169
  </tr>
7180
7170
  }
7181
7171
  }
7182
- `, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: LogicalRowDirective, selector: "[kendoTreeListLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "isNew", "totalColumns"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CellComponent, selector: "[kendoTreeListCell]", inputs: ["column", "columnIndex", "isNew", "level", "hasChildren", "isExpanded", "loading", "expandIcons", "rowIndex", "selected", "dataItem", "viewItem"] }, { kind: "directive", type: LogicalCellDirective, selector: "[kendoTreeListLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "column", "colIndex", "colSpan", "rowSpan", "dataRowIndex", "dataItem", "expandable", "headerLabelText"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "pipe", type: LevelItemsPipe, name: "levelItems" }] });
7172
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: LogicalRowDirective, selector: "[kendoTreeListLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "isNew", "totalColumns"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CellComponent, selector: "[kendoTreeListCell]", inputs: ["column", "columnIndex", "isNew", "level", "hasChildren", "isExpanded", "loading", "expandIcons", "rowIndex", "selected", "dataItem", "viewItem"] }, { kind: "directive", type: LogicalCellDirective, selector: "[kendoTreeListLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "column", "colIndex", "colSpan", "rowSpan", "dataRowIndex", "dataItem", "expandable", "headerLabelText"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "pipe", type: LevelItemsPipe, name: "levelItems" }] });
7183
7173
  }
7184
7174
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TableBodyComponent, decorators: [{
7185
7175
  type: Component,
@@ -7216,7 +7206,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
7216
7206
  class="k-table-row{{isOdd(item) ? ' k-table-alt-row' : ''}}"
7217
7207
  [class.k-grid-edit-row]="isEditingRow(item)"
7218
7208
  [class.k-grid-add-row]="item.isNew"
7219
- [attr.aria-selected]="ariaRowSelected(item)"
7209
+ [attr.aria-selected]="ariaRowSelected(item) || undefined"
7220
7210
  [class.k-selected]="item.selected"
7221
7211
  [attr.data-treelist-view-index]="rowIndex">
7222
7212
  @for (column of columns; track trackByColumns($index, column); let columnIndex = $index) {
@@ -7278,7 +7268,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
7278
7268
  >
7279
7269
  @if ($any(column).expandable) {
7280
7270
  @for (item of item.level | levelItems; track $index) {
7281
- <kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon"></kendo-icon-wrapper>
7271
+ <span class="k-icon k-svg-icon k-none k-treelist-toggle" aria-hidden="true"></span>
7282
7272
  }
7283
7273
  }
7284
7274
  <ng-container [ngTemplateOutlet]="column.footerTemplateRef"
@@ -7299,7 +7289,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
7299
7289
  }
7300
7290
  `,
7301
7291
  standalone: true,
7302
- imports: [NgTemplateOutlet, LogicalRowDirective, NgClass, CellComponent, LogicalCellDirective, NgStyle, IconWrapperComponent, LevelItemsPipe]
7292
+ imports: [NgTemplateOutlet, LogicalRowDirective, NgClass, CellComponent, LogicalCellDirective, NgStyle, LevelItemsPipe]
7303
7293
  }]
7304
7294
  }], ctorParameters: () => [{ type: ChangeNotificationService }, { type: EditService }, { type: i1$1.LocalizationService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: DomEventsService }, { type: ColumnInfoService }, { type: NavigationService }, { type: ExpandStateService }, { type: SelectionService }], propDecorators: { hostClass: [{
7305
7295
  type: HostBinding,
@@ -7840,13 +7830,16 @@ class ColGroupComponent {
7840
7830
  get columnsToRender() {
7841
7831
  return columnsToRender(this.columns);
7842
7832
  }
7833
+ isRowReorderColumn(column) {
7834
+ return Boolean(isRowReorderColumn(column));
7835
+ }
7843
7836
  trackBy(index, _item) {
7844
7837
  return index;
7845
7838
  }
7846
7839
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
7847
7840
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: ColGroupComponent, isStandalone: true, selector: "[kendoTreeListColGroup]", inputs: { columns: "columns" }, ngImport: i0, template: `
7848
7841
  @for (column of columnsToRender; track trackBy($index, column)) {
7849
- <col [style.width.px]="column.width"/>
7842
+ <col [style.width.px]="column.width" [class.k-drag-col]="isRowReorderColumn(column)"/>
7850
7843
  }
7851
7844
  `, isInline: true });
7852
7845
  }
@@ -7856,7 +7849,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
7856
7849
  selector: '[kendoTreeListColGroup]',
7857
7850
  template: `
7858
7851
  @for (column of columnsToRender; track trackBy($index, column)) {
7859
- <col [style.width.px]="column.width"/>
7852
+ <col [style.width.px]="column.width" [class.k-drag-col]="isRowReorderColumn(column)"/>
7860
7853
  }
7861
7854
  `,
7862
7855
  standalone: true
@@ -8052,7 +8045,7 @@ class ListComponent {
8052
8045
  return true;
8053
8046
  }
8054
8047
  get hostRole() {
8055
- return 'presentation';
8048
+ return this.isLocked ? 'none' : null;
8056
8049
  }
8057
8050
  view;
8058
8051
  total;
@@ -8509,7 +8502,7 @@ class ListComponent {
8509
8502
  }
8510
8503
  ], viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true, static: true }, { propertyName: "table", first: true, predicate: ["table"], descendants: true, static: true }, { propertyName: "lockedContainer", first: true, predicate: ["lockedContainer"], descendants: true }, { propertyName: "lockedTable", first: true, predicate: ["lockedTable"], descendants: true }, { propertyName: "resizeSensors", predicate: ResizeSensorComponent, descendants: true }], usesOnChanges: true, ngImport: i0, template: `
8511
8504
  @if (isLocked) {
8512
- <div #lockedContainer class="k-grid-content-locked" role="presentation"
8505
+ <div #lockedContainer class="k-grid-content-locked" role="none"
8513
8506
  [style.width.px]="lockedWidth"
8514
8507
  [kendoEventsOutsideAngular]="{
8515
8508
  keydown: lockedKeydown,
@@ -8518,20 +8511,20 @@ class ListComponent {
8518
8511
  DOMMouseScroll: lockedMousewheel
8519
8512
  }"
8520
8513
  [scope]="this">
8521
- <div role="presentation">
8514
+ <div>
8522
8515
  <table
8523
8516
  kendoTreeListResizableTable
8524
8517
  [locked]="true"
8525
8518
  #lockedTable
8526
8519
  class="k-table k-grid-table"
8527
- role="presentation"
8520
+ role="none"
8528
8521
  [style.width.px]="lockedWidth">
8529
8522
  <colgroup
8530
8523
  kendoTreeListColGroup
8531
8524
  [columns]="$any(lockedLeafColumns)">
8532
8525
  </colgroup>
8533
8526
  <tbody kendoTreeListTableBody
8534
- role="presentation"
8527
+ role="rowgroup"
8535
8528
  [isLocked]="true"
8536
8529
  [view]="view"
8537
8530
  [noRecordsText]="''"
@@ -8556,19 +8549,20 @@ class ListComponent {
8556
8549
  }
8557
8550
  <div
8558
8551
  #container
8559
- class="k-grid-content k-virtual-content"
8552
+ class="k-grid-content"
8560
8553
  [kendoTreeListResizableContainer]="lockedLeafColumns.length > 0"
8561
8554
  [lockedWidth]="lockedWidth + 1"
8562
8555
  tabindex="-1"
8556
+ [attr.role]="isLocked ? 'none' : null"
8563
8557
  >
8564
- <div role="presentation">
8558
+ <div>
8565
8559
  <table
8566
8560
  [style.width.px]="nonLockedWidth"
8567
8561
  #table
8568
8562
  kendoTreeListResizableTable
8569
8563
  [virtualColumns]="virtualColumns"
8570
8564
  class="k-table k-grid-table"
8571
- role="presentation">
8565
+ role="none">
8572
8566
  <colgroup
8573
8567
  kendoTreeListColGroup
8574
8568
  [columns]="$any(nonLockedColumnsToRender)">
@@ -8626,7 +8620,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
8626
8620
  selector: 'kendo-treelist-list',
8627
8621
  template: `
8628
8622
  @if (isLocked) {
8629
- <div #lockedContainer class="k-grid-content-locked" role="presentation"
8623
+ <div #lockedContainer class="k-grid-content-locked" role="none"
8630
8624
  [style.width.px]="lockedWidth"
8631
8625
  [kendoEventsOutsideAngular]="{
8632
8626
  keydown: lockedKeydown,
@@ -8635,20 +8629,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
8635
8629
  DOMMouseScroll: lockedMousewheel
8636
8630
  }"
8637
8631
  [scope]="this">
8638
- <div role="presentation">
8632
+ <div>
8639
8633
  <table
8640
8634
  kendoTreeListResizableTable
8641
8635
  [locked]="true"
8642
8636
  #lockedTable
8643
8637
  class="k-table k-grid-table"
8644
- role="presentation"
8638
+ role="none"
8645
8639
  [style.width.px]="lockedWidth">
8646
8640
  <colgroup
8647
8641
  kendoTreeListColGroup
8648
8642
  [columns]="$any(lockedLeafColumns)">
8649
8643
  </colgroup>
8650
8644
  <tbody kendoTreeListTableBody
8651
- role="presentation"
8645
+ role="rowgroup"
8652
8646
  [isLocked]="true"
8653
8647
  [view]="view"
8654
8648
  [noRecordsText]="''"
@@ -8673,19 +8667,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
8673
8667
  }
8674
8668
  <div
8675
8669
  #container
8676
- class="k-grid-content k-virtual-content"
8670
+ class="k-grid-content"
8677
8671
  [kendoTreeListResizableContainer]="lockedLeafColumns.length > 0"
8678
8672
  [lockedWidth]="lockedWidth + 1"
8679
8673
  tabindex="-1"
8674
+ [attr.role]="isLocked ? 'none' : null"
8680
8675
  >
8681
- <div role="presentation">
8676
+ <div>
8682
8677
  <table
8683
8678
  [style.width.px]="nonLockedWidth"
8684
8679
  #table
8685
8680
  kendoTreeListResizableTable
8686
8681
  [virtualColumns]="virtualColumns"
8687
8682
  class="k-table k-grid-table"
8688
- role="presentation">
8683
+ role="none">
8689
8684
  <colgroup
8690
8685
  kendoTreeListColGroup
8691
8686
  [columns]="$any(nonLockedColumnsToRender)">
@@ -11263,6 +11258,7 @@ class ColumnMenuItemBase {
11263
11258
  */
11264
11259
  service;
11265
11260
  hostClass = true;
11261
+ hostDisplay = 'block';
11266
11262
  ngOnInit() {
11267
11263
  if (isDevMode() && !this.service) {
11268
11264
  throw new Error(ColumnMenuErrorMessages.serviceInput);
@@ -11275,7 +11271,7 @@ class ColumnMenuItemBase {
11275
11271
  this.service.close();
11276
11272
  }
11277
11273
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColumnMenuItemBase, deps: [], target: i0.ɵɵFactoryTarget.Directive });
11278
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: ColumnMenuItemBase, isStandalone: true, inputs: { service: "service" }, host: { properties: { "class.k-columnmenu-item-wrapper": "this.hostClass" } }, ngImport: i0 });
11274
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: ColumnMenuItemBase, isStandalone: true, inputs: { service: "service" }, host: { properties: { "class.k-columnmenu-item-wrapper": "this.hostClass", "style.display": "this.hostDisplay" } }, ngImport: i0 });
11279
11275
  }
11280
11276
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColumnMenuItemBase, decorators: [{
11281
11277
  type: Directive,
@@ -11285,6 +11281,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
11285
11281
  }], hostClass: [{
11286
11282
  type: HostBinding,
11287
11283
  args: ['class.k-columnmenu-item-wrapper']
11284
+ }], hostDisplay: [{
11285
+ type: HostBinding,
11286
+ args: ['style.display']
11288
11287
  }] } });
11289
11288
 
11290
11289
  /**
@@ -11626,6 +11625,8 @@ class StringFilterMenuComponent extends StringFilterComponent {
11626
11625
  </kendo-treelist-string-filter-menu-input>
11627
11626
  @if (extra) {
11628
11627
  <kendo-dropdownlist
11628
+ kendoFilterMenuDropDown
11629
+ [filterMenuDropDownLabel]="filterMenuDropDownLabel"
11629
11630
  class="k-filter-and"
11630
11631
  [data]="logicOperators"
11631
11632
  [valuePrimitive]="true" (valueChange)="logicChange($event)"
@@ -11645,7 +11646,7 @@ class StringFilterMenuComponent extends StringFilterComponent {
11645
11646
  [menuTabbingService]="menuTabbingService">
11646
11647
  </kendo-treelist-string-filter-menu-input>
11647
11648
  }
11648
- `, isInline: true, dependencies: [{ kind: "component", type: StringFilterMenuInputComponent, selector: "kendo-treelist-string-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "placeholder", "isFirstDropDown", "menuTabbingService"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }] });
11649
+ `, isInline: true, dependencies: [{ kind: "component", type: StringFilterMenuInputComponent, selector: "kendo-treelist-string-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "placeholder", "isFirstDropDown", "menuTabbingService"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: FilterMenuDropDownListDirective, selector: "[kendoFilterMenuDropDown]", inputs: ["filterMenuDropDownLabel"] }] });
11649
11650
  }
11650
11651
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: StringFilterMenuComponent, decorators: [{
11651
11652
  type: Component,
@@ -11664,6 +11665,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
11664
11665
  </kendo-treelist-string-filter-menu-input>
11665
11666
  @if (extra) {
11666
11667
  <kendo-dropdownlist
11668
+ kendoFilterMenuDropDown
11669
+ [filterMenuDropDownLabel]="filterMenuDropDownLabel"
11667
11670
  class="k-filter-and"
11668
11671
  [data]="logicOperators"
11669
11672
  [valuePrimitive]="true" (valueChange)="logicChange($event)"
@@ -11685,7 +11688,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
11685
11688
  }
11686
11689
  `,
11687
11690
  standalone: true,
11688
- imports: [StringFilterMenuInputComponent, DropDownListComponent]
11691
+ imports: [StringFilterMenuInputComponent, DropDownListComponent, FilterMenuDropDownListDirective]
11689
11692
  }]
11690
11693
  }], ctorParameters: () => [{ type: i1$1.LocalizationService }], propDecorators: { hostClasses: [{
11691
11694
  type: HostBinding,
@@ -12667,6 +12670,14 @@ class FilterMenuContainerComponent {
12667
12670
  localization;
12668
12671
  cd;
12669
12672
  close = new EventEmitter();
12673
+ /**
12674
+ * @hidden
12675
+ */
12676
+ filterClearIcon = filterClearIcon;
12677
+ /**
12678
+ * @hidden
12679
+ */
12680
+ filterSVGIcon = filterIcon;
12670
12681
  /**
12671
12682
  * The column with which the filter is associated.
12672
12683
  * @type {ColumnComponent}
@@ -12702,7 +12713,7 @@ class FilterMenuContainerComponent {
12702
12713
  /**
12703
12714
  * @hidden
12704
12715
  */
12705
- actionsClass = 'k-actions k-button-group';
12716
+ actionsClass = 'k-actions k-actions-stretched k-actions-horizontal';
12706
12717
  get childFilter() {
12707
12718
  if (!isPresent(this._childFilter)) {
12708
12719
  this._childFilter = {
@@ -12837,12 +12848,14 @@ class FilterMenuContainerComponent {
12837
12848
  #filterButton
12838
12849
  type="submit"
12839
12850
  themeColor="primary"
12840
- class="k-button-rectangle"
12851
+ icon="filter"
12852
+ [svgIcon]="filterSVGIcon"
12841
12853
  [disabled]="disabled"
12842
12854
  (keydown.tab)="onTab($event, 'filter')">{{filterText}}</button>
12843
12855
  <button #resetButton kendoButton
12844
12856
  type="reset"
12845
- class="k-button-rectangle"
12857
+ icon="filter-clear"
12858
+ [svgIcon]="filterClearIcon"
12846
12859
  [class.k-disabled]="clearDisabled"
12847
12860
  [attr.aria-disabled]="clearDisabled"
12848
12861
  (click)="reset()"
@@ -12891,12 +12904,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
12891
12904
  #filterButton
12892
12905
  type="submit"
12893
12906
  themeColor="primary"
12894
- class="k-button-rectangle"
12907
+ icon="filter"
12908
+ [svgIcon]="filterSVGIcon"
12895
12909
  [disabled]="disabled"
12896
12910
  (keydown.tab)="onTab($event, 'filter')">{{filterText}}</button>
12897
12911
  <button #resetButton kendoButton
12898
12912
  type="reset"
12899
- class="k-button-rectangle"
12913
+ icon="filter-clear"
12914
+ [svgIcon]="filterClearIcon"
12900
12915
  [class.k-disabled]="clearDisabled"
12901
12916
  [attr.aria-disabled]="clearDisabled"
12902
12917
  (click)="reset()"
@@ -13021,6 +13036,10 @@ class ColumnMenuItemComponent {
13021
13036
  * Specifies if the item is expanded.
13022
13037
  */
13023
13038
  expanded;
13039
+ /**
13040
+ * @hidden
13041
+ */
13042
+ contentClass;
13024
13043
  /**
13025
13044
  * Provides the [ColumnMenuService](https://www.telerik.com/kendo-angular-ui/components/treelist/api/columnmenuservice) instance.
13026
13045
  * Required to include the item in the column menu keyboard navigation sequence.
@@ -13065,7 +13084,7 @@ class ColumnMenuItemComponent {
13065
13084
  this.contentState = this.expanded ? 'expanded' : 'collapsed';
13066
13085
  }
13067
13086
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColumnMenuItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
13068
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: ColumnMenuItemComponent, isStandalone: true, selector: "kendo-treelist-columnmenu-item", inputs: { icon: "icon", svgIcon: "svgIcon", text: "text", selected: "selected", disabled: "disabled", expanded: "expanded", service: "service" }, outputs: { itemClick: "itemClick", expand: "expand", collapse: "collapse" }, queries: [{ propertyName: "contentTemplate", first: true, predicate: ColumnMenuItemContentTemplateDirective, descendants: true }], usesOnChanges: true, ngImport: i0, template: `
13087
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: ColumnMenuItemComponent, isStandalone: true, selector: "kendo-treelist-columnmenu-item", inputs: { icon: "icon", svgIcon: "svgIcon", text: "text", selected: "selected", disabled: "disabled", expanded: "expanded", contentClass: "contentClass", service: "service" }, outputs: { itemClick: "itemClick", expand: "expand", collapse: "collapse" }, queries: [{ propertyName: "contentTemplate", first: true, predicate: ColumnMenuItemContentTemplateDirective, descendants: true }], usesOnChanges: true, ngImport: i0, template: `
13069
13088
  @if (contentTemplate) {
13070
13089
  <div class="k-expander">
13071
13090
  <ng-container [ngTemplateOutlet]="content"></ng-container>
@@ -13097,7 +13116,7 @@ class ColumnMenuItemComponent {
13097
13116
  }
13098
13117
  </div>
13099
13118
  @if (contentTemplate) {
13100
- <div [attr.id]="contentId" [@state]="contentState" [style.overflow]="'hidden'" class="k-columnmenu-item-content">
13119
+ <div [attr.id]="contentId" [@state]="contentState" [style.overflow]="'hidden'" [class]="'k-columnmenu-item-content' + (contentClass ? ' ' + contentClass : '')">
13101
13120
  <ng-container [ngTemplateOutlet]="contentTemplate.templateRef">
13102
13121
  </ng-container>
13103
13122
  </div>
@@ -13131,7 +13150,7 @@ class ColumnMenuItemComponent {
13131
13150
  }
13132
13151
  </div>
13133
13152
  @if (contentTemplate) {
13134
- <div [attr.id]="contentId" [@state]="contentState" [style.overflow]="'hidden'" class="k-columnmenu-item-content">
13153
+ <div [attr.id]="contentId" [@state]="contentState" [style.overflow]="'hidden'" [class]="'k-columnmenu-item-content' + (contentClass ? ' ' + contentClass : '')">
13135
13154
  <ng-container [ngTemplateOutlet]="contentTemplate.templateRef">
13136
13155
  </ng-container>
13137
13156
  </div>
@@ -13220,7 +13239,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
13220
13239
  }
13221
13240
  </div>
13222
13241
  @if (contentTemplate) {
13223
- <div [attr.id]="contentId" [@state]="contentState" [style.overflow]="'hidden'" class="k-columnmenu-item-content">
13242
+ <div [attr.id]="contentId" [@state]="contentState" [style.overflow]="'hidden'" [class]="'k-columnmenu-item-content' + (contentClass ? ' ' + contentClass : '')">
13224
13243
  <ng-container [ngTemplateOutlet]="contentTemplate.templateRef">
13225
13244
  </ng-container>
13226
13245
  </div>
@@ -13254,7 +13273,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
13254
13273
  }
13255
13274
  </div>
13256
13275
  @if (contentTemplate) {
13257
- <div [attr.id]="contentId" [@state]="contentState" [style.overflow]="'hidden'" class="k-columnmenu-item-content">
13276
+ <div [attr.id]="contentId" [@state]="contentState" [style.overflow]="'hidden'" [class]="'k-columnmenu-item-content' + (contentClass ? ' ' + contentClass : '')">
13258
13277
  <ng-container [ngTemplateOutlet]="contentTemplate.templateRef">
13259
13278
  </ng-container>
13260
13279
  </div>
@@ -13282,6 +13301,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
13282
13301
  type: Input
13283
13302
  }], expanded: [{
13284
13303
  type: Input
13304
+ }], contentClass: [{
13305
+ type: Input
13285
13306
  }], service: [{
13286
13307
  type: Input
13287
13308
  }], contentTemplate: [{
@@ -13377,7 +13398,7 @@ class ColumnMenuFilterComponent extends ColumnMenuItemBase {
13377
13398
  </kendo-treelist-filter-menu-container>
13378
13399
  </ng-template>
13379
13400
  </kendo-treelist-columnmenu-item>
13380
- `, isInline: true, dependencies: [{ kind: "component", type: ColumnMenuItemComponent, selector: "kendo-treelist-columnmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "disabled", "expanded", "service"], outputs: ["itemClick", "expand", "collapse"] }, { kind: "directive", type: ColumnMenuItemContentTemplateDirective, selector: "[kendoTreeListColumnMenuItemContentTemplate]" }, { kind: "component", type: FilterMenuContainerComponent, selector: "kendo-treelist-filter-menu-container", inputs: ["column", "isLast", "isExpanded", "menuTabbingService", "filter", "actionsClass"], outputs: ["close"] }] });
13401
+ `, isInline: true, dependencies: [{ kind: "component", type: ColumnMenuItemComponent, selector: "kendo-treelist-columnmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "disabled", "expanded", "contentClass", "service"], outputs: ["itemClick", "expand", "collapse"] }, { kind: "directive", type: ColumnMenuItemContentTemplateDirective, selector: "[kendoTreeListColumnMenuItemContentTemplate]" }, { kind: "component", type: FilterMenuContainerComponent, selector: "kendo-treelist-filter-menu-container", inputs: ["column", "isLast", "isExpanded", "menuTabbingService", "filter", "actionsClass"], outputs: ["close"] }] });
13381
13402
  }
13382
13403
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColumnMenuFilterComponent, decorators: [{
13383
13404
  type: Component,
@@ -13945,6 +13966,7 @@ class ColumnMenuChooserComponent extends ColumnMenuItemBase {
13945
13966
  icon="columns"
13946
13967
  [svgIcon]="columnsIcon"
13947
13968
  [expanded]="expanded"
13969
+ contentClass="k-columns-item"
13948
13970
  (collapse)="onCollapse()"
13949
13971
  (expand)="onExpand()">
13950
13972
  <ng-template kendoTreeListColumnMenuItemContentTemplate>
@@ -13963,7 +13985,7 @@ class ColumnMenuChooserComponent extends ColumnMenuItemBase {
13963
13985
  </kendo-treelist-columnlist>
13964
13986
  </ng-template>
13965
13987
  </kendo-treelist-columnmenu-item>
13966
- `, isInline: true, dependencies: [{ kind: "component", type: ColumnMenuItemComponent, selector: "kendo-treelist-columnmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "disabled", "expanded", "service"], outputs: ["itemClick", "expand", "collapse"] }, { kind: "directive", type: ColumnMenuItemContentTemplateDirective, selector: "[kendoTreeListColumnMenuItemContentTemplate]" }, { kind: "component", type: ColumnListComponent, selector: "kendo-treelist-columnlist", inputs: ["columns", "autoSync", "ariaLabel", "allowHideAll", "applyText", "resetText", "actionsClass", "isLast", "isExpanded", "service"], outputs: ["reset", "apply", "columnChange"] }] });
13988
+ `, isInline: true, dependencies: [{ kind: "component", type: ColumnMenuItemComponent, selector: "kendo-treelist-columnmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "disabled", "expanded", "contentClass", "service"], outputs: ["itemClick", "expand", "collapse"] }, { kind: "directive", type: ColumnMenuItemContentTemplateDirective, selector: "[kendoTreeListColumnMenuItemContentTemplate]" }, { kind: "component", type: ColumnListComponent, selector: "kendo-treelist-columnlist", inputs: ["columns", "autoSync", "ariaLabel", "allowHideAll", "applyText", "resetText", "actionsClass", "isLast", "isExpanded", "service"], outputs: ["reset", "apply", "columnChange"] }] });
13967
13989
  }
13968
13990
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColumnMenuChooserComponent, decorators: [{
13969
13991
  type: Component,
@@ -13975,6 +13997,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
13975
13997
  icon="columns"
13976
13998
  [svgIcon]="columnsIcon"
13977
13999
  [expanded]="expanded"
14000
+ contentClass="k-columns-item"
13978
14001
  (collapse)="onCollapse()"
13979
14002
  (expand)="onExpand()">
13980
14003
  <ng-template kendoTreeListColumnMenuItemContentTemplate>
@@ -14087,7 +14110,7 @@ class ColumnMenuLockComponent extends ColumnMenuItemBase {
14087
14110
  (itemClick)="toggleColumn()"
14088
14111
  [disabled]="disabled">
14089
14112
  </kendo-treelist-columnmenu-item>
14090
- `, isInline: true, dependencies: [{ kind: "component", type: ColumnMenuItemComponent, selector: "kendo-treelist-columnmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "disabled", "expanded", "service"], outputs: ["itemClick", "expand", "collapse"] }] });
14113
+ `, isInline: true, dependencies: [{ kind: "component", type: ColumnMenuItemComponent, selector: "kendo-treelist-columnmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "disabled", "expanded", "contentClass", "service"], outputs: ["itemClick", "expand", "collapse"] }] });
14091
14114
  }
14092
14115
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColumnMenuLockComponent, decorators: [{
14093
14116
  type: Component,
@@ -14182,7 +14205,7 @@ class ColumnMenuSortComponent extends ColumnMenuItemBase {
14182
14205
  (itemClick)="toggleSort('desc')"
14183
14206
  [selected]="sortedDesc">
14184
14207
  </kendo-treelist-columnmenu-item>
14185
- `, isInline: true, dependencies: [{ kind: "component", type: ColumnMenuItemComponent, selector: "kendo-treelist-columnmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "disabled", "expanded", "service"], outputs: ["itemClick", "expand", "collapse"] }] });
14208
+ `, isInline: true, dependencies: [{ kind: "component", type: ColumnMenuItemComponent, selector: "kendo-treelist-columnmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "disabled", "expanded", "contentClass", "service"], outputs: ["itemClick", "expand", "collapse"] }] });
14186
14209
  }
14187
14210
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColumnMenuSortComponent, decorators: [{
14188
14211
  type: Component,
@@ -14441,7 +14464,7 @@ class ColumnMenuAutoSizeAllColumnsComponent extends ColumnMenuItemBase {
14441
14464
  (itemClick)="autoSizeAllColumns()"
14442
14465
  ></kendo-treelist-columnmenu-item>
14443
14466
  }
14444
- `, isInline: true, dependencies: [{ kind: "component", type: ColumnMenuItemComponent, selector: "kendo-treelist-columnmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "disabled", "expanded", "service"], outputs: ["itemClick", "expand", "collapse"] }] });
14467
+ `, isInline: true, dependencies: [{ kind: "component", type: ColumnMenuItemComponent, selector: "kendo-treelist-columnmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "disabled", "expanded", "contentClass", "service"], outputs: ["itemClick", "expand", "collapse"] }] });
14445
14468
  }
14446
14469
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColumnMenuAutoSizeAllColumnsComponent, decorators: [{
14447
14470
  type: Component,
@@ -14512,7 +14535,7 @@ class ColumnMenuAutoSizeColumnComponent extends ColumnMenuItemBase {
14512
14535
  (itemClick)="autoSizeColumn()"
14513
14536
  ></kendo-treelist-columnmenu-item>
14514
14537
  }
14515
- `, isInline: true, dependencies: [{ kind: "component", type: ColumnMenuItemComponent, selector: "kendo-treelist-columnmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "disabled", "expanded", "service"], outputs: ["itemClick", "expand", "collapse"] }] });
14538
+ `, isInline: true, dependencies: [{ kind: "component", type: ColumnMenuItemComponent, selector: "kendo-treelist-columnmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "disabled", "expanded", "contentClass", "service"], outputs: ["itemClick", "expand", "collapse"] }] });
14516
14539
  }
14517
14540
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColumnMenuAutoSizeColumnComponent, decorators: [{
14518
14541
  type: Component,
@@ -14536,7 +14559,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
14536
14559
  type: Input
14537
14560
  }] } });
14538
14561
 
14539
- const POPUP_CLASSES = 'k-grid-columnmenu-popup k-column-menu';
14562
+ const POPUP_CLASSES = 'k-grid-columnmenu-popup';
14540
14563
  let id$1 = 0;
14541
14564
  const getId$1 = (treelistId) => `${treelistId}-column-menu-${id$1++}`;
14542
14565
  /**
@@ -14790,6 +14813,7 @@ class ColumnMenuComponent {
14790
14813
  </a>
14791
14814
  <ng-template #template>
14792
14815
  <kendo-treelist-columnmenu-container
14816
+ class="k-column-menu"
14793
14817
  (keydown.escape)="close(true)"
14794
14818
  (keydown.enter)="$event.stopImmediatePropagation()">
14795
14819
  <ng-container
@@ -14810,9 +14834,6 @@ class ColumnMenuComponent {
14810
14834
  <kendo-treelist-columnmenu-lock #lockItem [kendoTreeListColumnMenuItem]="lockItem" [service]="service">
14811
14835
  </kendo-treelist-columnmenu-lock>
14812
14836
  }
14813
- @if (hasColumnChooser || hasAutoSizeColumn || hasAutoSizeAllColumns) {
14814
- <span [style.borderColor]="'rgba(0, 0, 0, 0.08)'" class="k-separator"></span>
14815
- }
14816
14837
  @if (hasColumnChooser) {
14817
14838
  <kendo-treelist-columnmenu-chooser
14818
14839
  #chooserItem
@@ -14839,9 +14860,6 @@ class ColumnMenuComponent {
14839
14860
  >
14840
14861
  </kendo-treelist-columnmenu-autosize-all-columns>
14841
14862
  }
14842
- @if (hasColumnChooser || hasAutoSizeColumn || hasAutoSizeAllColumns) {
14843
- <span [style.borderColor]="'rgba(0, 0, 0, 0.08)'" class="k-separator"></span>
14844
- }
14845
14863
  @if (hasFilter) {
14846
14864
  <kendo-treelist-columnmenu-filter
14847
14865
  #filterItem
@@ -14880,6 +14898,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
14880
14898
  </a>
14881
14899
  <ng-template #template>
14882
14900
  <kendo-treelist-columnmenu-container
14901
+ class="k-column-menu"
14883
14902
  (keydown.escape)="close(true)"
14884
14903
  (keydown.enter)="$event.stopImmediatePropagation()">
14885
14904
  <ng-container
@@ -14900,9 +14919,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
14900
14919
  <kendo-treelist-columnmenu-lock #lockItem [kendoTreeListColumnMenuItem]="lockItem" [service]="service">
14901
14920
  </kendo-treelist-columnmenu-lock>
14902
14921
  }
14903
- @if (hasColumnChooser || hasAutoSizeColumn || hasAutoSizeAllColumns) {
14904
- <span [style.borderColor]="'rgba(0, 0, 0, 0.08)'" class="k-separator"></span>
14905
- }
14906
14922
  @if (hasColumnChooser) {
14907
14923
  <kendo-treelist-columnmenu-chooser
14908
14924
  #chooserItem
@@ -14929,9 +14945,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
14929
14945
  >
14930
14946
  </kendo-treelist-columnmenu-autosize-all-columns>
14931
14947
  }
14932
- @if (hasColumnChooser || hasAutoSizeColumn || hasAutoSizeAllColumns) {
14933
- <span [style.borderColor]="'rgba(0, 0, 0, 0.08)'" class="k-separator"></span>
14934
- }
14935
14948
  @if (hasFilter) {
14936
14949
  <kendo-treelist-columnmenu-filter
14937
14950
  #filterItem
@@ -15700,7 +15713,7 @@ class HeaderComponent {
15700
15713
  [attr.colspan]="column.colspan"
15701
15714
  [attr.aria-haspopup]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? 'dialog' : undefined"
15702
15715
  [attr.aria-expanded]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? false : undefined"
15703
- [attr.aria-keyshortcuts]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? 'Alt + ArrowDown' : undefined">
15716
+ [attr.aria-keyshortcuts]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? 'Alt+ArrowDown' : undefined">
15704
15717
  @if (!isInteractive(getColumnComponent(column), 'sortable')) {
15705
15718
  <span class="k-cell-inner">
15706
15719
  <span class="k-link" [class.!k-cursor-default]="!isInteractive(getColumnComponent(column), 'reorderable')">
@@ -15837,7 +15850,7 @@ class HeaderComponent {
15837
15850
  [class.k-first]="isFirstOnRow(getColumnComponent(column), columnIndex)"
15838
15851
  [attr.aria-haspopup]="(isNavigable && showColumnMenu(column)) ? 'dialog' : undefined"
15839
15852
  [attr.aria-expanded]="(isNavigable && showColumnMenu(column)) ? false : undefined"
15840
- [attr.aria-keyshortcuts]="isNavigable && showColumnMenu(column) ? 'Alt + ArrowDown' : undefined"
15853
+ [attr.aria-keyshortcuts]="isNavigable && showColumnMenu(column) ? 'Alt+ArrowDown' : undefined"
15841
15854
  [ngClass]="column.headerClass"
15842
15855
  [ngStyle]="column.headerStyle"
15843
15856
  [attr.rowspan]="column.rowspan(totalColumnLevels)"
@@ -15939,7 +15952,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
15939
15952
  [attr.colspan]="column.colspan"
15940
15953
  [attr.aria-haspopup]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? 'dialog' : undefined"
15941
15954
  [attr.aria-expanded]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? false : undefined"
15942
- [attr.aria-keyshortcuts]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? 'Alt + ArrowDown' : undefined">
15955
+ [attr.aria-keyshortcuts]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? 'Alt+ArrowDown' : undefined">
15943
15956
  @if (!isInteractive(getColumnComponent(column), 'sortable')) {
15944
15957
  <span class="k-cell-inner">
15945
15958
  <span class="k-link" [class.!k-cursor-default]="!isInteractive(getColumnComponent(column), 'reorderable')">
@@ -16076,7 +16089,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
16076
16089
  [class.k-first]="isFirstOnRow(getColumnComponent(column), columnIndex)"
16077
16090
  [attr.aria-haspopup]="(isNavigable && showColumnMenu(column)) ? 'dialog' : undefined"
16078
16091
  [attr.aria-expanded]="(isNavigable && showColumnMenu(column)) ? false : undefined"
16079
- [attr.aria-keyshortcuts]="isNavigable && showColumnMenu(column) ? 'Alt + ArrowDown' : undefined"
16092
+ [attr.aria-keyshortcuts]="isNavigable && showColumnMenu(column) ? 'Alt+ArrowDown' : undefined"
16080
16093
  [ngClass]="column.headerClass"
16081
16094
  [ngStyle]="column.headerStyle"
16082
16095
  [attr.rowspan]="column.rowspan(totalColumnLevels)"
@@ -18885,7 +18898,7 @@ class TreeListComponent {
18885
18898
  [id]="ariaRootId"
18886
18899
  [attr.aria-rowcount]="ariaRowCount"
18887
18900
  [attr.aria-colcount]="ariaColCount"
18888
- [attr.aria-multiselectable]="ariaMultiselectable"
18901
+ [attr.aria-multiselectable]="ariaMultiselectable || undefined"
18889
18902
  [attr.aria-label]="ariaLabel"
18890
18903
  kendoDragTargetContainer
18891
18904
  kendoDropTargetContainer
@@ -18908,18 +18921,18 @@ class TreeListComponent {
18908
18921
  @if (!hideHeader) {
18909
18922
  <div
18910
18923
  class="k-grid-header"
18911
- role="presentation"
18924
+ [attr.role]="isLocked ? 'none' : null"
18912
18925
  [style.padding]="headerPadding">
18913
18926
  @if (isLocked) {
18914
18927
  <div
18915
18928
  #lockedHeader
18916
- role="presentation"
18929
+ role="none"
18917
18930
  class="k-grid-header-locked"
18918
18931
  [style.width.px]="lockedWidth">
18919
18932
  <table
18920
18933
  kendoTreeListResizableTable
18921
18934
  [locked]="true"
18922
- role="presentation"
18935
+ role="none"
18923
18936
  [style.width.px]="lockedWidth"
18924
18937
  class="k-grid-header-table k-table">
18925
18938
  <colgroup
@@ -18946,11 +18959,13 @@ class TreeListComponent {
18946
18959
  </table>
18947
18960
  </div>
18948
18961
  }
18949
- <div #header class="k-grid-header-wrap" role="presentation" data-scrollable
18962
+ <div #header class="k-grid-header-wrap"
18963
+ [attr.role]="isLocked ? 'none' : undefined"
18964
+ data-scrollable
18950
18965
  [kendoTreeListResizableContainer]="lockedLeafColumns.length > 0"
18951
18966
  [lockedWidth]="lockedWidth + scrollbarWidth + 2">
18952
18967
  <table
18953
- role="presentation"
18968
+ role="none"
18954
18969
  [style.width.px]="nonLockedWidth"
18955
18970
  kendoTreeListResizableTable
18956
18971
  [virtualColumns]="virtualColumns"
@@ -19012,7 +19027,7 @@ class TreeListComponent {
19012
19027
  @if (!isScrollable) {
19013
19028
  <table
19014
19029
  class="k-table k-grid-header-table"
19015
- role="presentation"
19030
+ role="none"
19016
19031
  [style.table-layout]="resizable ? 'fixed' : null"
19017
19032
  kendoTreeListResizableTable>
19018
19033
  <colgroup
@@ -19444,7 +19459,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
19444
19459
  [id]="ariaRootId"
19445
19460
  [attr.aria-rowcount]="ariaRowCount"
19446
19461
  [attr.aria-colcount]="ariaColCount"
19447
- [attr.aria-multiselectable]="ariaMultiselectable"
19462
+ [attr.aria-multiselectable]="ariaMultiselectable || undefined"
19448
19463
  [attr.aria-label]="ariaLabel"
19449
19464
  kendoDragTargetContainer
19450
19465
  kendoDropTargetContainer
@@ -19467,18 +19482,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
19467
19482
  @if (!hideHeader) {
19468
19483
  <div
19469
19484
  class="k-grid-header"
19470
- role="presentation"
19485
+ [attr.role]="isLocked ? 'none' : null"
19471
19486
  [style.padding]="headerPadding">
19472
19487
  @if (isLocked) {
19473
19488
  <div
19474
19489
  #lockedHeader
19475
- role="presentation"
19490
+ role="none"
19476
19491
  class="k-grid-header-locked"
19477
19492
  [style.width.px]="lockedWidth">
19478
19493
  <table
19479
19494
  kendoTreeListResizableTable
19480
19495
  [locked]="true"
19481
- role="presentation"
19496
+ role="none"
19482
19497
  [style.width.px]="lockedWidth"
19483
19498
  class="k-grid-header-table k-table">
19484
19499
  <colgroup
@@ -19505,11 +19520,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
19505
19520
  </table>
19506
19521
  </div>
19507
19522
  }
19508
- <div #header class="k-grid-header-wrap" role="presentation" data-scrollable
19523
+ <div #header class="k-grid-header-wrap"
19524
+ [attr.role]="isLocked ? 'none' : undefined"
19525
+ data-scrollable
19509
19526
  [kendoTreeListResizableContainer]="lockedLeafColumns.length > 0"
19510
19527
  [lockedWidth]="lockedWidth + scrollbarWidth + 2">
19511
19528
  <table
19512
- role="presentation"
19529
+ role="none"
19513
19530
  [style.width.px]="nonLockedWidth"
19514
19531
  kendoTreeListResizableTable
19515
19532
  [virtualColumns]="virtualColumns"
@@ -19571,7 +19588,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
19571
19588
  @if (!isScrollable) {
19572
19589
  <table
19573
19590
  class="k-table k-grid-header-table"
19574
- role="presentation"
19591
+ role="none"
19575
19592
  [style.table-layout]="resizable ? 'fixed' : null"
19576
19593
  kendoTreeListResizableTable>
19577
19594
  <colgroup
package/index.d.ts CHANGED
@@ -22,7 +22,7 @@ import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
22
22
  import { PopupService, PopupRef } from '@progress/kendo-angular-popup';
23
23
  import { DomSanitizer } from '@angular/platform-browser';
24
24
  import * as i6 from '@progress/kendo-angular-icons';
25
- import { IconsService, SVGIcon as SVGIcon$1 } from '@progress/kendo-angular-icons';
25
+ import { IconsService } from '@progress/kendo-angular-icons';
26
26
  import { DateInputFormatPlaceholder, CalendarView, DatePickerComponent } from '@progress/kendo-angular-dateinputs';
27
27
  import { RadioButtonComponent } from '@progress/kendo-angular-inputs';
28
28
  import * as i100 from '@progress/kendo-angular-excel-export';
@@ -4440,6 +4440,7 @@ declare class LogicalRowDirective implements LogicalRow, OnDestroy, OnChanges {
4440
4440
  declare class ColGroupComponent {
4441
4441
  columns: Array<ColumnComponent>;
4442
4442
  get columnsToRender(): Array<ColumnBase>;
4443
+ isRowReorderColumn(column: ColumnBase): boolean;
4443
4444
  trackBy(index: number, _item: any): any;
4444
4445
  static ɵfac: i0.ɵɵFactoryDeclaration<ColGroupComponent, never>;
4445
4446
  static ɵcmp: i0.ɵɵComponentDeclaration<ColGroupComponent, "[kendoTreeListColGroup]", never, { "columns": { "alias": "columns"; "required": false; }; }, {}, never, never, true, never>;
@@ -4829,7 +4830,6 @@ declare class CellComponent implements AfterContentChecked, DoCheck {
4829
4830
  chevronRightIcon: SVGIcon;
4830
4831
  chevronLeftIcon: SVGIcon;
4831
4832
  reorderIcon: SVGIcon;
4832
- noneIcon: SVGIcon;
4833
4833
  cellContext: any;
4834
4834
  private _templateContext;
4835
4835
  private _editTemplateContext;
@@ -7226,6 +7226,14 @@ declare class FilterMenuContainerComponent implements AfterViewChecked, OnInit,
7226
7226
  protected localization: LocalizationService;
7227
7227
  protected cd: ChangeDetectorRef;
7228
7228
  close: EventEmitter<any>;
7229
+ /**
7230
+ * @hidden
7231
+ */
7232
+ filterClearIcon: SVGIcon;
7233
+ /**
7234
+ * @hidden
7235
+ */
7236
+ filterSVGIcon: SVGIcon;
7229
7237
  /**
7230
7238
  * The column with which the filter is associated.
7231
7239
  * @type {ColumnComponent}
@@ -7768,6 +7776,7 @@ declare class ColumnMenuItemBase implements OnInit {
7768
7776
  */
7769
7777
  service: ColumnMenuService;
7770
7778
  hostClass: boolean;
7779
+ hostDisplay: string;
7771
7780
  ngOnInit(): void;
7772
7781
  /**
7773
7782
  * @hidden
@@ -7972,6 +7981,10 @@ declare class ColumnMenuItemComponent implements AfterViewInit, OnChanges {
7972
7981
  * Specifies if the item is expanded.
7973
7982
  */
7974
7983
  expanded: boolean;
7984
+ /**
7985
+ * @hidden
7986
+ */
7987
+ contentClass: string;
7975
7988
  /**
7976
7989
  * Provides the [ColumnMenuService](https://www.telerik.com/kendo-angular-ui/components/treelist/api/columnmenuservice) instance.
7977
7990
  * Required to include the item in the column menu keyboard navigation sequence.
@@ -7992,7 +8005,7 @@ declare class ColumnMenuItemComponent implements AfterViewInit, OnChanges {
7992
8005
  onClick(e: any): void;
7993
8006
  private updateContentState;
7994
8007
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnMenuItemComponent, never>;
7995
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnMenuItemComponent, "kendo-treelist-columnmenu-item", never, { "icon": { "alias": "icon"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "text": { "alias": "text"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "service": { "alias": "service"; "required": false; }; }, { "itemClick": "itemClick"; "expand": "expand"; "collapse": "collapse"; }, ["contentTemplate"], never, true, never>;
8008
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnMenuItemComponent, "kendo-treelist-columnmenu-item", never, { "icon": { "alias": "icon"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "text": { "alias": "text"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "contentClass": { "alias": "contentClass"; "required": false; }; "service": { "alias": "service"; "required": false; }; }, { "itemClick": "itemClick"; "expand": "expand"; "collapse": "collapse"; }, ["contentTemplate"], never, true, never>;
7996
8009
  }
7997
8010
 
7998
8011
  /**
@@ -8563,7 +8576,6 @@ declare class TableBodyComponent implements OnInit, OnDestroy, OnChanges {
8563
8576
  expandIcons: boolean;
8564
8577
  trackBy: TrackByFunction<TreeListItem>;
8565
8578
  totalColumns: ColumnsContainer;
8566
- noneIcon: SVGIcon$1;
8567
8579
  private clickSubscription;
8568
8580
  private l10nSubscription;
8569
8581
  private cellKeydownSubscription;
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1788250781,
11
- "version": "25.1.0-develop.21",
10
+ "publishDate": 1788265480,
11
+ "version": "25.1.0-develop.22",
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-treelist",
3
- "version": "25.1.0-develop.21",
3
+ "version": "25.1.0-develop.22",
4
4
  "description": "Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -39,7 +39,7 @@
39
39
  "package": {
40
40
  "productName": "Kendo UI for Angular",
41
41
  "productCode": "KENDOUIANGULAR",
42
- "publishDate": 1788250781,
42
+ "publishDate": 1788265480,
43
43
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
44
44
  }
45
45
  },
@@ -52,26 +52,26 @@
52
52
  "@progress/kendo-data-query": "^1.7.3",
53
53
  "@progress/kendo-drawing": "^1.25.0",
54
54
  "@progress/kendo-licensing": "^1.11.0",
55
- "@progress/kendo-angular-buttons": "25.1.0-develop.21",
56
- "@progress/kendo-angular-common": "25.1.0-develop.21",
57
- "@progress/kendo-angular-dateinputs": "25.1.0-develop.21",
58
- "@progress/kendo-angular-dropdowns": "25.1.0-develop.21",
59
- "@progress/kendo-angular-excel-export": "25.1.0-develop.21",
60
- "@progress/kendo-angular-icons": "25.1.0-develop.21",
61
- "@progress/kendo-angular-inputs": "25.1.0-develop.21",
62
- "@progress/kendo-angular-intl": "25.1.0-develop.21",
63
- "@progress/kendo-angular-l10n": "25.1.0-develop.21",
64
- "@progress/kendo-angular-label": "25.1.0-develop.21",
65
- "@progress/kendo-angular-pager": "25.1.0-develop.21",
66
- "@progress/kendo-angular-pdf-export": "25.1.0-develop.21",
67
- "@progress/kendo-angular-popup": "25.1.0-develop.21",
68
- "@progress/kendo-angular-toolbar": "25.1.0-develop.21",
69
- "@progress/kendo-angular-utils": "25.1.0-develop.21",
55
+ "@progress/kendo-angular-buttons": "25.1.0-develop.22",
56
+ "@progress/kendo-angular-common": "25.1.0-develop.22",
57
+ "@progress/kendo-angular-dateinputs": "25.1.0-develop.22",
58
+ "@progress/kendo-angular-dropdowns": "25.1.0-develop.22",
59
+ "@progress/kendo-angular-excel-export": "25.1.0-develop.22",
60
+ "@progress/kendo-angular-icons": "25.1.0-develop.22",
61
+ "@progress/kendo-angular-inputs": "25.1.0-develop.22",
62
+ "@progress/kendo-angular-intl": "25.1.0-develop.22",
63
+ "@progress/kendo-angular-l10n": "25.1.0-develop.22",
64
+ "@progress/kendo-angular-label": "25.1.0-develop.22",
65
+ "@progress/kendo-angular-pager": "25.1.0-develop.22",
66
+ "@progress/kendo-angular-pdf-export": "25.1.0-develop.22",
67
+ "@progress/kendo-angular-popup": "25.1.0-develop.22",
68
+ "@progress/kendo-angular-toolbar": "25.1.0-develop.22",
69
+ "@progress/kendo-angular-utils": "25.1.0-develop.22",
70
70
  "rxjs": "^6.5.3 || ^7.0.0"
71
71
  },
72
72
  "dependencies": {
73
73
  "tslib": "^2.3.1",
74
- "@progress/kendo-angular-schematics": "25.1.0-develop.21",
74
+ "@progress/kendo-angular-schematics": "25.1.0-develop.22",
75
75
  "@progress/kendo-common": "^1.0.1",
76
76
  "@progress/kendo-file-saver": "^1.0.0"
77
77
  },
@@ -9,13 +9,13 @@ const schematics_1 = require("@angular-devkit/schematics");
9
9
  function default_1(options) {
10
10
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'TreeListModule', package: 'treelist', peerDependencies: {
11
11
  // peer dep of the dropdowns
12
- '@progress/kendo-angular-treeview': '25.1.0-develop.21',
12
+ '@progress/kendo-angular-treeview': '25.1.0-develop.22',
13
13
  // peer dependency of kendo-angular-inputs
14
- '@progress/kendo-angular-dialog': '25.1.0-develop.21',
14
+ '@progress/kendo-angular-dialog': '25.1.0-develop.22',
15
15
  // peer dependency of kendo-angular-icons
16
16
  '@progress/kendo-svg-icons': '^4.0.0',
17
17
  // peer dependency of kendo-angular-dateinputs
18
- '@progress/kendo-angular-navigation': '25.1.0-develop.21',
18
+ '@progress/kendo-angular-navigation': '25.1.0-develop.22',
19
19
  } });
20
20
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
21
21
  }