@progress/kendo-angular-grid 19.3.0-develop.3 → 19.3.0-develop.5

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 (25) hide show
  1. package/esm2022/adaptiveness/adaptive-renderer.component.mjs +1 -2
  2. package/esm2022/column-menu/column-list.component.mjs +10 -10
  3. package/esm2022/column-menu/column-menu.component.mjs +1 -1
  4. package/esm2022/editing/form/form-formfield.component.mjs +1 -1
  5. package/esm2022/filtering/cell/boolean-filter-cell.component.mjs +1 -1
  6. package/esm2022/filtering/cell/date-filter-cell.component.mjs +1 -1
  7. package/esm2022/filtering/cell/filter-cell-operators.component.mjs +1 -2
  8. package/esm2022/filtering/cell/numeric-filter-cell.component.mjs +1 -1
  9. package/esm2022/filtering/cell/string-filter-cell.component.mjs +1 -1
  10. package/esm2022/filtering/filter-row.component.mjs +1 -1
  11. package/esm2022/filtering/menu/boolean-filter-menu.component.mjs +1 -2
  12. package/esm2022/filtering/menu/date-filter-menu-input.component.mjs +1 -1
  13. package/esm2022/filtering/menu/date-filter-menu.component.mjs +1 -1
  14. package/esm2022/filtering/menu/filter-menu-input-wrapper.component.mjs +1 -1
  15. package/esm2022/filtering/menu/filter-menu.component.mjs +1 -1
  16. package/esm2022/filtering/menu/numeric-filter-menu-input.component.mjs +1 -1
  17. package/esm2022/filtering/menu/numeric-filter-menu.component.mjs +1 -1
  18. package/esm2022/filtering/menu/string-filter-menu-input.component.mjs +1 -1
  19. package/esm2022/filtering/menu/string-filter-menu.component.mjs +1 -1
  20. package/esm2022/package-metadata.mjs +2 -2
  21. package/esm2022/utils.mjs +0 -4
  22. package/fesm2022/progress-kendo-angular-grid.mjs +13 -17
  23. package/package.json +20 -20
  24. package/schematics/ngAdd/index.js +4 -4
  25. package/utils.d.ts +0 -4
@@ -26,13 +26,12 @@ import { hasFilter, hasSort, hasLock, hasStick, hasColumnChooser, hasAutoSizeCol
26
26
  import { ColumnMenuService } from '../column-menu/column-menu.service';
27
27
  import { ColumnListComponent } from '../column-menu/column-list.component';
28
28
  import { ContextService } from '../common/provider.service';
29
- import { replaceMessagePlaceholder } from '../utils';
30
29
  import { AdaptiveService } from '@progress/kendo-angular-utils';
31
30
  import { SortService } from '../common/sort.service';
32
31
  import { ColumnInfoService } from '../common/column-info.service';
33
32
  import { normalize } from '../columns/sort-settings';
34
33
  import { directions } from '../rendering/toolbar/tools/sort-toolbar-tool.component';
35
- import { EventsOutsideAngularDirective } from '@progress/kendo-angular-common';
34
+ import { EventsOutsideAngularDirective, replaceMessagePlaceholder } from '@progress/kendo-angular-common';
36
35
  import { FormComponent } from '../editing/form';
37
36
  import { GroupToolbarToolComponent } from '../rendering/toolbar/tools/group-toolbar-tool.component';
38
37
  import * as i0 from "@angular/core";
@@ -12,7 +12,7 @@ import { NgFor, NgIf, NgClass } from '@angular/common';
12
12
  import { CheckBoxComponent } from '@progress/kendo-angular-inputs';
13
13
  import { take } from 'rxjs/operators';
14
14
  import { arrowRotateCcwIcon, checkIcon } from '@progress/kendo-svg-icons';
15
- import { ButtonDirective } from '@progress/kendo-angular-buttons';
15
+ import { ButtonComponent } from '@progress/kendo-angular-buttons';
16
16
  import { ContextService } from '../common/provider.service';
17
17
  import { AdaptiveGridService } from '../common/adaptiveness.service';
18
18
  import * as i0 from "@angular/core";
@@ -96,7 +96,7 @@ export class ColumnListComponent {
96
96
  ngAfterViewInit() {
97
97
  this.ngZone.onStable.pipe(take(1)).subscribe(() => {
98
98
  this.listNavigationService.items = this.options.toArray();
99
- if (!this.ctx) {
99
+ if (this.adaptiveGridService?.viewType !== 'columnMenu') {
100
100
  this.listNavigationService.toggle(0, true);
101
101
  }
102
102
  this.updateDisabled();
@@ -280,8 +280,8 @@ export class ColumnListComponent {
280
280
  role="listbox"
281
281
  aria-multiselectable="true"
282
282
  [attr.aria-label]="ariaLabel">
283
- <label
284
- *ngFor="let column of columns; let index = index;"
283
+ <label
284
+ *ngFor="let column of columns; let index = index;"
285
285
  class='k-column-list-item'
286
286
  [kendoColumnMenuChooserItemChecked]="!column.hidden"
287
287
  role="option">
@@ -294,7 +294,7 @@ export class ColumnListComponent {
294
294
  <span class="k-checkbox-label">{{ column.displayTitle }}</span>
295
295
  </label>
296
296
  </div>
297
- <div [ngClass]="actionsClass" *ngIf="!autoSync && showActions">
297
+ <div [ngClass]="actionsClass" *ngIf="!autoSync && showActions">
298
298
  <button
299
299
  #applyButton
300
300
  kendoButton
@@ -316,7 +316,7 @@ export class ColumnListComponent {
316
316
  (keydown.enter)="$event.preventDefault(); $event.stopPropagation(); cancelChanges();"
317
317
  (keydown.space)="$event.preventDefault(); $event.stopPropagation(); cancelChanges();">{{ resetText }}</button>
318
318
  </div>
319
- `, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: ColumnMenuChooserItemCheckedDirective, selector: "[kendoColumnMenuChooserItemChecked]", inputs: ["kendoColumnMenuChooserItemChecked"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: ButtonDirective, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
319
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: ColumnMenuChooserItemCheckedDirective, selector: "[kendoColumnMenuChooserItemChecked]", inputs: ["kendoColumnMenuChooserItemChecked"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
320
320
  }
321
321
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnListComponent, decorators: [{
322
322
  type: Component,
@@ -329,8 +329,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
329
329
  role="listbox"
330
330
  aria-multiselectable="true"
331
331
  [attr.aria-label]="ariaLabel">
332
- <label
333
- *ngFor="let column of columns; let index = index;"
332
+ <label
333
+ *ngFor="let column of columns; let index = index;"
334
334
  class='k-column-list-item'
335
335
  [kendoColumnMenuChooserItemChecked]="!column.hidden"
336
336
  role="option">
@@ -343,7 +343,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
343
343
  <span class="k-checkbox-label">{{ column.displayTitle }}</span>
344
344
  </label>
345
345
  </div>
346
- <div [ngClass]="actionsClass" *ngIf="!autoSync && showActions">
346
+ <div [ngClass]="actionsClass" *ngIf="!autoSync && showActions">
347
347
  <button
348
348
  #applyButton
349
349
  kendoButton
@@ -367,7 +367,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
367
367
  </div>
368
368
  `,
369
369
  standalone: true,
370
- imports: [NgFor, ColumnMenuChooserItemCheckedDirective, NgIf, NgClass, CheckBoxComponent, ButtonDirective]
370
+ imports: [NgFor, ColumnMenuChooserItemCheckedDirective, NgIf, NgClass, CheckBoxComponent, ButtonComponent]
371
371
  }]
372
372
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i1.ColumnListKeyboardNavigation }, { type: i2.AdaptiveGridService, decorators: [{
373
373
  type: Optional
@@ -9,7 +9,6 @@ import { SinglePopupService } from '../common/single-popup.service';
9
9
  import { ColumnMenuService } from './column-menu.service';
10
10
  import { filtersByField } from '../filtering/base-filter-cell.component';
11
11
  import { hasFilter, hasSort, hasLock, hasStick, hasColumnChooser, hasAutoSizeColumn, hasPosition, hasAutoSizeAllColumns } from './utils';
12
- import { replaceMessagePlaceholder } from '../utils';
13
12
  import { ContextService } from '../common/provider.service';
14
13
  import { ColumnMenuErrorMessages } from '../common/error-messages';
15
14
  import { moreVerticalIcon, columnsIcon, filterIcon, slidersIcon } from '@progress/kendo-svg-icons';
@@ -31,6 +30,7 @@ import { ColumnMenuContainerComponent } from './column-menu-container.component'
31
30
  import { NgClass, NgTemplateOutlet, NgIf } from '@angular/common';
32
31
  import { IconWrapperComponent } from '@progress/kendo-angular-icons';
33
32
  import { AdaptiveGridService } from '../common/adaptiveness.service';
33
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
34
34
  import * as i0 from "@angular/core";
35
35
  import * as i1 from "./../navigation/navigation.service";
36
36
  import * as i2 from "../common/single-popup.service";
@@ -10,7 +10,7 @@ import { KENDO_CHECKBOX, KENDO_FORMFIELD, KENDO_NUMERICTEXTBOX, KENDO_TEXTBOX }
10
10
  import { KENDO_LABELS } from '@progress/kendo-angular-label';
11
11
  import { ReactiveFormsModule } from '@angular/forms';
12
12
  import { LocalizationService } from '@progress/kendo-angular-l10n';
13
- import { replaceMessagePlaceholder } from '../../utils';
13
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
14
14
  import * as i0 from "@angular/core";
15
15
  import * as i1 from "@progress/kendo-angular-l10n";
16
16
  import * as i2 from "@angular/forms";
@@ -5,13 +5,13 @@
5
5
  import { Component, ChangeDetectorRef } from '@angular/core';
6
6
  import { FilterService } from '../filter.service';
7
7
  import { BooleanFilterComponent } from '../boolean-filter.component';
8
- import { replaceMessagePlaceholder } from '../../utils';
9
8
  import { SizingOptionsService } from '../../layout/sizing-options.service';
10
9
  import { ContextService } from '../../common/provider.service';
11
10
  import { FocusableDirective } from '../../navigation/focusable.directive';
12
11
  import { FilterInputDirective } from '../filter-input.directive';
13
12
  import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
14
13
  import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
14
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
15
15
  import * as i0 from "@angular/core";
16
16
  import * as i1 from "../filter.service";
17
17
  import * as i2 from "../../common/provider.service";
@@ -5,13 +5,13 @@
5
5
  import { Component, Input } from '@angular/core';
6
6
  import { FilterService } from '../filter.service';
7
7
  import { DateFilterComponent } from '../date-filter.component';
8
- import { replaceMessagePlaceholder } from '../../utils';
9
8
  import { SizingOptionsService } from '../../layout/sizing-options.service';
10
9
  import { ContextService } from '../../common/provider.service';
11
10
  import { FocusableDirective } from '../../navigation/focusable.directive';
12
11
  import { FilterInputDirective } from '../filter-input.directive';
13
12
  import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
14
13
  import { DatePickerComponent, DatePickerCustomMessagesComponent } from '@progress/kendo-angular-dateinputs';
14
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
15
15
  import * as i0 from "@angular/core";
16
16
  import * as i1 from "../filter.service";
17
17
  import * as i2 from "../../common/provider.service";
@@ -4,11 +4,10 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Component, Input, Output, EventEmitter, HostBinding, ViewChild } from '@angular/core';
6
6
  import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
7
- import { Keys } from '@progress/kendo-angular-common';
7
+ import { Keys, replaceMessagePlaceholder } from '@progress/kendo-angular-common';
8
8
  import { SizingOptionsService } from '../../layout/sizing-options.service';
9
9
  import { filterClearIcon, filterIcon } from '@progress/kendo-svg-icons';
10
10
  import { ContextService } from '../../common/provider.service';
11
- import { replaceMessagePlaceholder } from '../../utils';
12
11
  import { ColumnComponent } from '../../columns/column.component';
13
12
  import { FocusableDirective } from '../../navigation/focusable.directive';
14
13
  import { NgIf } from '@angular/common';
@@ -5,13 +5,13 @@
5
5
  import { Component, Input } from '@angular/core';
6
6
  import { FilterService } from '../filter.service';
7
7
  import { NumericFilterComponent } from '../numeric-filter.component';
8
- import { replaceMessagePlaceholder } from '../../utils';
9
8
  import { SizingOptionsService } from '../../layout/sizing-options.service';
10
9
  import { ContextService } from '../../common/provider.service';
11
10
  import { FilterInputDirective } from '../filter-input.directive';
12
11
  import { FocusableDirective } from '../../navigation/focusable.directive';
13
12
  import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
14
13
  import { NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent } from '@progress/kendo-angular-inputs';
14
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
15
15
  import * as i0 from "@angular/core";
16
16
  import * as i1 from "../filter.service";
17
17
  import * as i2 from "../../common/provider.service";
@@ -5,7 +5,6 @@
5
5
  import { Component, Input } from '@angular/core';
6
6
  import { FilterService } from '../filter.service';
7
7
  import { StringFilterComponent } from "../string-filter.component";
8
- import { replaceMessagePlaceholder } from '../../utils';
9
8
  import { SizingOptionsService } from '../../layout/sizing-options.service';
10
9
  import { ContextService } from '../../common/provider.service';
11
10
  import { FormsModule } from '@angular/forms';
@@ -13,6 +12,7 @@ import { FilterInputDirective } from '../filter-input.directive';
13
12
  import { FocusableDirective } from '../../navigation/focusable.directive';
14
13
  import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
15
14
  import { TextBoxComponent } from '@progress/kendo-angular-inputs';
15
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
16
16
  import * as i0 from "@angular/core";
17
17
  import * as i1 from "../filter.service";
18
18
  import * as i2 from "../../common/provider.service";
@@ -5,11 +5,11 @@
5
5
  import { ColumnInfoService } from './../common/column-info.service';
6
6
  import { Component, Input, HostBinding } from '@angular/core';
7
7
  import { DetailTemplateDirective } from '../rendering/details/detail-template.directive';
8
- import { replaceMessagePlaceholder } from '../utils';
9
8
  import { ContextService } from '../common/provider.service';
10
9
  import { LogicalCellDirective } from '../navigation/logical-cell.directive';
11
10
  import { FilterCellComponent } from './cell/filter-cell.component';
12
11
  import { NgFor, NgIf, NgStyle, NgClass } from '@angular/common';
12
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
13
13
  import * as i0 from "@angular/core";
14
14
  import * as i1 from "../common/provider.service";
15
15
  import * as i2 from "./../common/column-info.service";
@@ -5,9 +5,8 @@
5
5
  import { Component, Input, HostBinding, QueryList, ViewChildren } from '@angular/core';
6
6
  import { FilterService } from '../filter.service';
7
7
  import { BooleanFilterComponent } from '../boolean-filter.component';
8
- import { guid } from '@progress/kendo-angular-common';
8
+ import { guid, replaceMessagePlaceholder } from '@progress/kendo-angular-common';
9
9
  import { BooleanFilterRadioButtonDirective } from './filter-radio-button.directive';
10
- import { replaceMessagePlaceholder } from '../../utils';
11
10
  import { MenuTabbingService } from './menu-tabbing.service';
12
11
  import { ContextService } from '../../common/provider.service';
13
12
  import { NgFor } from '@angular/common';
@@ -9,10 +9,10 @@ import { FilterService } from '../filter.service';
9
9
  import { SinglePopupService } from '../../common/single-popup.service';
10
10
  import { filter } from 'rxjs/operators';
11
11
  import { DatePickerComponent, DatePickerCustomMessagesComponent } from '@progress/kendo-angular-dateinputs';
12
- import { replaceMessagePlaceholder } from '../../utils';
13
12
  import { ContextService } from '../../common/provider.service';
14
13
  import { FilterInputDirective } from '../filter-input.directive';
15
14
  import { FilterMenuInputWrapperComponent } from './filter-menu-input-wrapper.component';
15
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
16
16
  import * as i0 from "@angular/core";
17
17
  import * as i1 from "../../common/single-popup.service";
18
18
  import * as i2 from "../../common/provider.service";
@@ -7,12 +7,12 @@ import { Component, Input, HostBinding } from '@angular/core';
7
7
  import { FilterService } from '../filter.service';
8
8
  import { DateFilterComponent } from '../date-filter.component';
9
9
  import { setFilter, logicOperators } from '../base-filter-cell.component';
10
- import { replaceMessagePlaceholder } from '../../utils';
11
10
  import { ContextService } from '../../common/provider.service';
12
11
  import { FilterMenuDropDownListDirective } from './filter-menu-dropdownlist.directive';
13
12
  import { NgIf } from '@angular/common';
14
13
  import { DateFilterMenuInputComponent } from './date-filter-menu-input.component';
15
14
  import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
15
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
16
16
  import * as i0 from "@angular/core";
17
17
  import * as i1 from "../../common/provider.service";
18
18
  /**
@@ -7,11 +7,11 @@ import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
7
7
  import { MenuTabbingService } from './menu-tabbing.service';
8
8
  import { FilterService } from '../filter.service';
9
9
  import { FilterInputWrapperComponent } from "../filter-input-wrapper.component";
10
- import { replaceMessagePlaceholder } from '../../utils';
11
10
  import { ContextService } from '../../common/provider.service';
12
11
  import { FilterMenuDropDownListDirective } from './filter-menu-dropdownlist.directive';
13
12
  import { AdaptiveGridService } from '../../common/adaptiveness.service';
14
13
  import { Subscription } from 'rxjs';
14
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
15
15
  import * as i0 from "@angular/core";
16
16
  import * as i1 from "../../common/provider.service";
17
17
  import * as i2 from "../../common/adaptiveness.service";
@@ -8,13 +8,13 @@ import { FilterService } from "../filter.service";
8
8
  import { ColumnComponent } from '../../columns/column.component';
9
9
  import { SinglePopupService } from '../../common/single-popup.service';
10
10
  import { filtersByField } from '../base-filter-cell.component';
11
- import { replaceMessagePlaceholder } from '../../utils';
12
11
  import { filterIcon } from '@progress/kendo-svg-icons';
13
12
  import { ContextService } from '../../common/provider.service';
14
13
  import { IdService } from '../../common/id.service';
15
14
  import { FilterMenuContainerComponent } from './filter-menu-container.component';
16
15
  import { IconWrapperComponent } from '@progress/kendo-angular-icons';
17
16
  import { AdaptiveGridService } from '../../common/adaptiveness.service';
17
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
18
18
  import * as i0 from "@angular/core";
19
19
  import * as i1 from "../filter.service";
20
20
  import * as i2 from "../../common/single-popup.service";
@@ -5,12 +5,12 @@
5
5
  import { Component, Input } from '@angular/core';
6
6
  import { ColumnComponent } from "../../columns/column.component";
7
7
  import { FilterService } from '../filter.service';
8
- import { replaceMessagePlaceholder } from '../../utils';
9
8
  import { MenuTabbingService } from './menu-tabbing.service';
10
9
  import { ContextService } from '../../common/provider.service';
11
10
  import { FilterInputDirective } from '../filter-input.directive';
12
11
  import { FilterMenuInputWrapperComponent } from './filter-menu-input-wrapper.component';
13
12
  import { NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent } from '@progress/kendo-angular-inputs';
13
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
14
14
  import * as i0 from "@angular/core";
15
15
  import * as i1 from "../../common/provider.service";
16
16
  /**
@@ -6,13 +6,13 @@ import { Component, Input, HostBinding } from '@angular/core';
6
6
  import { FilterService } from '../filter.service';
7
7
  import { NumericFilterComponent } from '../numeric-filter.component';
8
8
  import { setFilter, logicOperators } from '../base-filter-cell.component';
9
- import { replaceMessagePlaceholder } from '../../utils';
10
9
  import { MenuTabbingService } from './menu-tabbing.service';
11
10
  import { ContextService } from '../../common/provider.service';
12
11
  import { FilterMenuDropDownListDirective } from './filter-menu-dropdownlist.directive';
13
12
  import { NgIf } from '@angular/common';
14
13
  import { NumericFilterMenuInputComponent } from './numeric-filter-menu-input.component';
15
14
  import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
15
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
16
16
  import * as i0 from "@angular/core";
17
17
  import * as i1 from "../../common/provider.service";
18
18
  /**
@@ -5,13 +5,13 @@
5
5
  import { Component, Input } from '@angular/core';
6
6
  import { ColumnComponent } from "../../columns/column.component";
7
7
  import { FilterService } from '../filter.service';
8
- import { replaceMessagePlaceholder } from '../../utils';
9
8
  import { MenuTabbingService } from './menu-tabbing.service';
10
9
  import { ContextService } from '../../common/provider.service';
11
10
  import { FilterInputDirective } from '../filter-input.directive';
12
11
  import { FormsModule } from '@angular/forms';
13
12
  import { FilterMenuInputWrapperComponent } from './filter-menu-input-wrapper.component';
14
13
  import { TextBoxComponent } from '@progress/kendo-angular-inputs';
14
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
15
15
  import * as i0 from "@angular/core";
16
16
  import * as i1 from "../../common/provider.service";
17
17
  import * as i2 from "@angular/forms";
@@ -7,12 +7,12 @@ import { Component, Input, HostBinding } from '@angular/core';
7
7
  import { StringFilterComponent } from '../string-filter.component';
8
8
  import { FilterService } from '../filter.service';
9
9
  import { setFilter, logicOperators } from '../base-filter-cell.component';
10
- import { replaceMessagePlaceholder } from '../../utils';
11
10
  import { ContextService } from '../../common/provider.service';
12
11
  import { FilterMenuDropDownListDirective } from './filter-menu-dropdownlist.directive';
13
12
  import { NgIf } from '@angular/common';
14
13
  import { StringFilterMenuInputComponent } from './string-filter-menu-input.component';
15
14
  import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
15
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
16
16
  import * as i0 from "@angular/core";
17
17
  import * as i1 from "../../common/provider.service";
18
18
  /**
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1751985061,
14
- version: '19.3.0-develop.3',
13
+ publishDate: 1752072448,
14
+ version: '19.3.0-develop.5',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
package/esm2022/utils.mjs CHANGED
@@ -113,10 +113,6 @@ export const cancelAnimationFrame = wnd.cancelAnimationFrame || wnd.msCancelRequ
113
113
  * @hidden
114
114
  */
115
115
  export const nodesToArray = (nodes) => [].slice.call(nodes);
116
- /**
117
- * @hidden
118
- */
119
- export const replaceMessagePlaceholder = (message, name, value) => (message ?? '').replace(new RegExp(`{\\s*${name}\\s*}`, 'g'), value);
120
116
  /**
121
117
  * @hidden
122
118
  */
@@ -6,7 +6,7 @@ import * as i0 from '@angular/core';
6
6
  import { EventEmitter, Injectable, SecurityContext, InjectionToken, Optional, Inject, Directive, SkipSelf, Input, isDevMode, QueryList, Component, ContentChildren, ContentChild, forwardRef, Host, Output, HostBinding, Pipe, TemplateRef, ChangeDetectionStrategy, ViewChildren, ViewChild, Self, NgZone, HostListener, ElementRef, ViewContainerRef, ViewEncapsulation, inject, Injector, NgModule } from '@angular/core';
7
7
  import { merge, of, Subject, zip as zip$1, from, Subscription, interval, fromEvent, Observable, BehaviorSubject } from 'rxjs';
8
8
  import * as i1$3 from '@progress/kendo-angular-common';
9
- import { isDocumentAvailable, Keys, isPresent as isPresent$1, anyChanged, TemplateContextDirective, DraggableDirective, EventsOutsideAngularDirective, isChanged as isChanged$1, KendoInput, guid, closest as closest$1, hasObservers, ResizeSensorComponent, closestInScope as closestInScope$1, isFocusable as isFocusable$1, shouldShowValidationUI, WatermarkOverlayComponent, PreventableEvent as PreventableEvent$1, ResizeBatchService } from '@progress/kendo-angular-common';
9
+ import { isDocumentAvailable, Keys, isPresent as isPresent$1, anyChanged, TemplateContextDirective, DraggableDirective, EventsOutsideAngularDirective, replaceMessagePlaceholder, isChanged as isChanged$1, KendoInput, guid, closest as closest$1, hasObservers, ResizeSensorComponent, closestInScope as closestInScope$1, isFocusable as isFocusable$1, shouldShowValidationUI, WatermarkOverlayComponent, PreventableEvent as PreventableEvent$1, ResizeBatchService } from '@progress/kendo-angular-common';
10
10
  import * as i1 from '@angular/platform-browser';
11
11
  import * as i1$1 from '@progress/kendo-angular-icons';
12
12
  import { IconWrapperComponent, IconsService, KENDO_ICONS } from '@progress/kendo-angular-icons';
@@ -23,7 +23,7 @@ import * as i1$4 from '@progress/kendo-angular-intl';
23
23
  import * as i2 from '@progress/kendo-angular-popup';
24
24
  import { PopupService } from '@progress/kendo-angular-popup';
25
25
  import * as i1$6 from '@progress/kendo-angular-buttons';
26
- import { ChipListComponent, ChipComponent, ButtonComponent, ButtonDirective, Button, KENDO_BUTTON } from '@progress/kendo-angular-buttons';
26
+ import { ChipListComponent, ChipComponent, ButtonComponent, Button, KENDO_BUTTON, ButtonDirective } from '@progress/kendo-angular-buttons';
27
27
  import * as i1$5 from '@progress/kendo-angular-dropdowns';
28
28
  import { DropDownListComponent, AutoCompleteComponent } from '@progress/kendo-angular-dropdowns';
29
29
  import * as i4 from '@angular/forms';
@@ -439,10 +439,6 @@ const cancelAnimationFrame = wnd.cancelAnimationFrame || wnd.msCancelRequestAnim
439
439
  * @hidden
440
440
  */
441
441
  const nodesToArray = (nodes) => [].slice.call(nodes);
442
- /**
443
- * @hidden
444
- */
445
- const replaceMessagePlaceholder = (message, name, value) => (message ?? '').replace(new RegExp(`{\\s*${name}\\s*}`, 'g'), value);
446
442
  /**
447
443
  * @hidden
448
444
  */
@@ -11982,7 +11978,7 @@ class ColumnListComponent {
11982
11978
  ngAfterViewInit() {
11983
11979
  this.ngZone.onStable.pipe(take(1)).subscribe(() => {
11984
11980
  this.listNavigationService.items = this.options.toArray();
11985
- if (!this.ctx) {
11981
+ if (this.adaptiveGridService?.viewType !== 'columnMenu') {
11986
11982
  this.listNavigationService.toggle(0, true);
11987
11983
  }
11988
11984
  this.updateDisabled();
@@ -12166,8 +12162,8 @@ class ColumnListComponent {
12166
12162
  role="listbox"
12167
12163
  aria-multiselectable="true"
12168
12164
  [attr.aria-label]="ariaLabel">
12169
- <label
12170
- *ngFor="let column of columns; let index = index;"
12165
+ <label
12166
+ *ngFor="let column of columns; let index = index;"
12171
12167
  class='k-column-list-item'
12172
12168
  [kendoColumnMenuChooserItemChecked]="!column.hidden"
12173
12169
  role="option">
@@ -12180,7 +12176,7 @@ class ColumnListComponent {
12180
12176
  <span class="k-checkbox-label">{{ column.displayTitle }}</span>
12181
12177
  </label>
12182
12178
  </div>
12183
- <div [ngClass]="actionsClass" *ngIf="!autoSync && showActions">
12179
+ <div [ngClass]="actionsClass" *ngIf="!autoSync && showActions">
12184
12180
  <button
12185
12181
  #applyButton
12186
12182
  kendoButton
@@ -12202,7 +12198,7 @@ class ColumnListComponent {
12202
12198
  (keydown.enter)="$event.preventDefault(); $event.stopPropagation(); cancelChanges();"
12203
12199
  (keydown.space)="$event.preventDefault(); $event.stopPropagation(); cancelChanges();">{{ resetText }}</button>
12204
12200
  </div>
12205
- `, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: ColumnMenuChooserItemCheckedDirective, selector: "[kendoColumnMenuChooserItemChecked]", inputs: ["kendoColumnMenuChooserItemChecked"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: ButtonDirective, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
12201
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: ColumnMenuChooserItemCheckedDirective, selector: "[kendoColumnMenuChooserItemChecked]", inputs: ["kendoColumnMenuChooserItemChecked"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
12206
12202
  }
12207
12203
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnListComponent, decorators: [{
12208
12204
  type: Component,
@@ -12215,8 +12211,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
12215
12211
  role="listbox"
12216
12212
  aria-multiselectable="true"
12217
12213
  [attr.aria-label]="ariaLabel">
12218
- <label
12219
- *ngFor="let column of columns; let index = index;"
12214
+ <label
12215
+ *ngFor="let column of columns; let index = index;"
12220
12216
  class='k-column-list-item'
12221
12217
  [kendoColumnMenuChooserItemChecked]="!column.hidden"
12222
12218
  role="option">
@@ -12229,7 +12225,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
12229
12225
  <span class="k-checkbox-label">{{ column.displayTitle }}</span>
12230
12226
  </label>
12231
12227
  </div>
12232
- <div [ngClass]="actionsClass" *ngIf="!autoSync && showActions">
12228
+ <div [ngClass]="actionsClass" *ngIf="!autoSync && showActions">
12233
12229
  <button
12234
12230
  #applyButton
12235
12231
  kendoButton
@@ -12253,7 +12249,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
12253
12249
  </div>
12254
12250
  `,
12255
12251
  standalone: true,
12256
- imports: [NgFor, ColumnMenuChooserItemCheckedDirective, NgIf, NgClass, CheckBoxComponent, ButtonDirective]
12252
+ imports: [NgFor, ColumnMenuChooserItemCheckedDirective, NgIf, NgClass, CheckBoxComponent, ButtonComponent]
12257
12253
  }]
12258
12254
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: ColumnListKeyboardNavigation }, { type: AdaptiveGridService, decorators: [{
12259
12255
  type: Optional
@@ -21226,8 +21222,8 @@ const packageMetadata = {
21226
21222
  productName: 'Kendo UI for Angular',
21227
21223
  productCode: 'KENDOUIANGULAR',
21228
21224
  productCodes: ['KENDOUIANGULAR'],
21229
- publishDate: 1751985061,
21230
- version: '19.3.0-develop.3',
21225
+ publishDate: 1752072448,
21226
+ version: '19.3.0-develop.5',
21231
21227
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
21232
21228
  };
21233
21229
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-grid",
3
- "version": "19.3.0-develop.3",
3
+ "version": "19.3.0-develop.5",
4
4
  "description": "Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -26,7 +26,7 @@
26
26
  "package": {
27
27
  "productName": "Kendo UI for Angular",
28
28
  "productCode": "KENDOUIANGULAR",
29
- "publishDate": 1751985061,
29
+ "publishDate": 1752072448,
30
30
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
31
31
  }
32
32
  },
@@ -39,28 +39,28 @@
39
39
  "@progress/kendo-data-query": "^1.0.0",
40
40
  "@progress/kendo-drawing": "^1.21.0",
41
41
  "@progress/kendo-licensing": "^1.5.0",
42
- "@progress/kendo-angular-buttons": "19.3.0-develop.3",
43
- "@progress/kendo-angular-common": "19.3.0-develop.3",
44
- "@progress/kendo-angular-dateinputs": "19.3.0-develop.3",
45
- "@progress/kendo-angular-layout": "19.3.0-develop.3",
46
- "@progress/kendo-angular-navigation": "19.3.0-develop.3",
47
- "@progress/kendo-angular-dropdowns": "19.3.0-develop.3",
48
- "@progress/kendo-angular-excel-export": "19.3.0-develop.3",
49
- "@progress/kendo-angular-icons": "19.3.0-develop.3",
50
- "@progress/kendo-angular-inputs": "19.3.0-develop.3",
51
- "@progress/kendo-angular-intl": "19.3.0-develop.3",
52
- "@progress/kendo-angular-l10n": "19.3.0-develop.3",
53
- "@progress/kendo-angular-label": "19.3.0-develop.3",
54
- "@progress/kendo-angular-pager": "19.3.0-develop.3",
55
- "@progress/kendo-angular-pdf-export": "19.3.0-develop.3",
56
- "@progress/kendo-angular-popup": "19.3.0-develop.3",
57
- "@progress/kendo-angular-toolbar": "19.3.0-develop.3",
58
- "@progress/kendo-angular-utils": "19.3.0-develop.3",
42
+ "@progress/kendo-angular-buttons": "19.3.0-develop.5",
43
+ "@progress/kendo-angular-common": "19.3.0-develop.5",
44
+ "@progress/kendo-angular-dateinputs": "19.3.0-develop.5",
45
+ "@progress/kendo-angular-layout": "19.3.0-develop.5",
46
+ "@progress/kendo-angular-navigation": "19.3.0-develop.5",
47
+ "@progress/kendo-angular-dropdowns": "19.3.0-develop.5",
48
+ "@progress/kendo-angular-excel-export": "19.3.0-develop.5",
49
+ "@progress/kendo-angular-icons": "19.3.0-develop.5",
50
+ "@progress/kendo-angular-inputs": "19.3.0-develop.5",
51
+ "@progress/kendo-angular-intl": "19.3.0-develop.5",
52
+ "@progress/kendo-angular-l10n": "19.3.0-develop.5",
53
+ "@progress/kendo-angular-label": "19.3.0-develop.5",
54
+ "@progress/kendo-angular-pager": "19.3.0-develop.5",
55
+ "@progress/kendo-angular-pdf-export": "19.3.0-develop.5",
56
+ "@progress/kendo-angular-popup": "19.3.0-develop.5",
57
+ "@progress/kendo-angular-toolbar": "19.3.0-develop.5",
58
+ "@progress/kendo-angular-utils": "19.3.0-develop.5",
59
59
  "rxjs": "^6.5.3 || ^7.0.0"
60
60
  },
61
61
  "dependencies": {
62
62
  "tslib": "^2.3.1",
63
- "@progress/kendo-angular-schematics": "19.3.0-develop.3",
63
+ "@progress/kendo-angular-schematics": "19.3.0-develop.5",
64
64
  "@progress/kendo-common": "^1.0.1",
65
65
  "@progress/kendo-file-saver": "^1.0.0"
66
66
  },
@@ -4,14 +4,14 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
6
6
  // peer deps of the dropdowns
7
- '@progress/kendo-angular-treeview': '19.3.0-develop.3',
8
- '@progress/kendo-angular-navigation': '19.3.0-develop.3',
7
+ '@progress/kendo-angular-treeview': '19.3.0-develop.5',
8
+ '@progress/kendo-angular-navigation': '19.3.0-develop.5',
9
9
  // peer dependency of kendo-angular-inputs
10
- '@progress/kendo-angular-dialog': '19.3.0-develop.3',
10
+ '@progress/kendo-angular-dialog': '19.3.0-develop.5',
11
11
  // peer dependency of kendo-angular-icons
12
12
  '@progress/kendo-svg-icons': '^4.0.0',
13
13
  // peer dependency of kendo-angular-layout
14
- '@progress/kendo-angular-progressbar': '19.3.0-develop.3'
14
+ '@progress/kendo-angular-progressbar': '19.3.0-develop.5'
15
15
  } });
16
16
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
17
17
  }
package/utils.d.ts CHANGED
@@ -83,10 +83,6 @@ export declare const cancelAnimationFrame: any;
83
83
  * @hidden
84
84
  */
85
85
  export declare const nodesToArray: (nodes: NodeList) => HTMLElement[];
86
- /**
87
- * @hidden
88
- */
89
- export declare const replaceMessagePlaceholder: (message: string, name: string, value: string) => string;
90
86
  /**
91
87
  * @hidden
92
88
  */