@progress/kendo-angular-grid 19.3.0-develop.4 → 19.3.0-develop.6

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 (24) hide show
  1. package/esm2022/adaptiveness/adaptive-renderer.component.mjs +1 -2
  2. package/esm2022/column-menu/column-menu.component.mjs +1 -1
  3. package/esm2022/editing/form/form-formfield.component.mjs +2 -2
  4. package/esm2022/filtering/cell/boolean-filter-cell.component.mjs +1 -1
  5. package/esm2022/filtering/cell/date-filter-cell.component.mjs +1 -1
  6. package/esm2022/filtering/cell/filter-cell-operators.component.mjs +1 -2
  7. package/esm2022/filtering/cell/numeric-filter-cell.component.mjs +1 -1
  8. package/esm2022/filtering/cell/string-filter-cell.component.mjs +1 -1
  9. package/esm2022/filtering/filter-row.component.mjs +1 -1
  10. package/esm2022/filtering/menu/boolean-filter-menu.component.mjs +1 -2
  11. package/esm2022/filtering/menu/date-filter-menu-input.component.mjs +1 -1
  12. package/esm2022/filtering/menu/date-filter-menu.component.mjs +1 -1
  13. package/esm2022/filtering/menu/filter-menu-input-wrapper.component.mjs +1 -1
  14. package/esm2022/filtering/menu/filter-menu.component.mjs +1 -1
  15. package/esm2022/filtering/menu/numeric-filter-menu-input.component.mjs +1 -1
  16. package/esm2022/filtering/menu/numeric-filter-menu.component.mjs +1 -1
  17. package/esm2022/filtering/menu/string-filter-menu-input.component.mjs +1 -1
  18. package/esm2022/filtering/menu/string-filter-menu.component.mjs +1 -1
  19. package/esm2022/package-metadata.mjs +2 -2
  20. package/esm2022/utils.mjs +0 -4
  21. package/fesm2022/progress-kendo-angular-grid.mjs +4 -8
  22. package/package.json +20 -20
  23. package/schematics/ngAdd/index.js +4 -4
  24. 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";
@@ -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";
@@ -89,7 +89,7 @@ export class FormFormFieldComponent {
89
89
  <kendo-formerror *ngFor="let err of control?.formControl?.errors | keyvalue">{{control.errors ? control.errors[err.key] : messageFor('formValidationError', err.key, control.name)}}</kendo-formerror>
90
90
  </ng-container>
91
91
  </kendo-formfield>
92
- `, isInline: true, dependencies: [{ kind: "pipe", type: KeyValuePipe, name: "keyvalue" }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { kind: "component", type: i3.FloatingLabelComponent, selector: "kendo-floatinglabel", inputs: ["labelCssStyle", "labelCssClass", "id", "text", "optional"], outputs: ["positionChange"], exportAs: ["kendoFloatingLabel"] }, { kind: "component", type: i4.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { kind: "component", type: i4.HintComponent, selector: "kendo-formhint", inputs: ["align"] }, { kind: "component", type: i4.ErrorComponent, selector: "kendo-formerror", inputs: ["align"] }, { kind: "component", type: i4.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "component", type: i4.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "component", type: i4.CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: i5.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "adaptiveTitle", "adaptiveSubtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }] });
92
+ `, isInline: true, dependencies: [{ kind: "pipe", type: KeyValuePipe, name: "keyvalue" }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { kind: "component", type: i3.FloatingLabelComponent, selector: "kendo-floatinglabel", inputs: ["labelCssStyle", "labelCssClass", "id", "text", "optional"], outputs: ["positionChange"], exportAs: ["kendoFloatingLabel"] }, { kind: "component", type: i4.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors", "colSpan"] }, { kind: "component", type: i4.HintComponent, selector: "kendo-formhint", inputs: ["align"] }, { kind: "component", type: i4.ErrorComponent, selector: "kendo-formerror", inputs: ["align"] }, { kind: "component", type: i4.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "component", type: i4.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "component", type: i4.CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: i5.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "adaptiveTitle", "adaptiveSubtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }] });
93
93
  }
94
94
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFormFieldComponent, decorators: [{
95
95
  type: Component,
@@ -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: 1752065531,
14
- version: '19.3.0-develop.4',
13
+ publishDate: 1752079946,
14
+ version: '19.3.0-develop.6',
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';
@@ -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
  */
@@ -21226,8 +21222,8 @@ const packageMetadata = {
21226
21222
  productName: 'Kendo UI for Angular',
21227
21223
  productCode: 'KENDOUIANGULAR',
21228
21224
  productCodes: ['KENDOUIANGULAR'],
21229
- publishDate: 1752065531,
21230
- version: '19.3.0-develop.4',
21225
+ publishDate: 1752079946,
21226
+ version: '19.3.0-develop.6',
21231
21227
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
21232
21228
  };
21233
21229
 
@@ -25793,7 +25789,7 @@ class FormFormFieldComponent {
25793
25789
  <kendo-formerror *ngFor="let err of control?.formControl?.errors | keyvalue">{{control.errors ? control.errors[err.key] : messageFor('formValidationError', err.key, control.name)}}</kendo-formerror>
25794
25790
  </ng-container>
25795
25791
  </kendo-formfield>
25796
- `, isInline: true, dependencies: [{ kind: "pipe", type: KeyValuePipe, name: "keyvalue" }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { kind: "component", type: i3.FloatingLabelComponent, selector: "kendo-floatinglabel", inputs: ["labelCssStyle", "labelCssClass", "id", "text", "optional"], outputs: ["positionChange"], exportAs: ["kendoFloatingLabel"] }, { kind: "component", type: i4$1.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { kind: "component", type: i4$1.HintComponent, selector: "kendo-formhint", inputs: ["align"] }, { kind: "component", type: i4$1.ErrorComponent, selector: "kendo-formerror", inputs: ["align"] }, { kind: "component", type: i4$1.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "component", type: i4$1.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "component", type: i4$1.CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: i5.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "adaptiveTitle", "adaptiveSubtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }] });
25792
+ `, isInline: true, dependencies: [{ kind: "pipe", type: KeyValuePipe, name: "keyvalue" }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { kind: "component", type: i3.FloatingLabelComponent, selector: "kendo-floatinglabel", inputs: ["labelCssStyle", "labelCssClass", "id", "text", "optional"], outputs: ["positionChange"], exportAs: ["kendoFloatingLabel"] }, { kind: "component", type: i4$1.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors", "colSpan"] }, { kind: "component", type: i4$1.HintComponent, selector: "kendo-formhint", inputs: ["align"] }, { kind: "component", type: i4$1.ErrorComponent, selector: "kendo-formerror", inputs: ["align"] }, { kind: "component", type: i4$1.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "component", type: i4$1.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "component", type: i4$1.CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: i5.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "adaptiveTitle", "adaptiveSubtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }] });
25797
25793
  }
25798
25794
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFormFieldComponent, decorators: [{
25799
25795
  type: Component,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-grid",
3
- "version": "19.3.0-develop.4",
3
+ "version": "19.3.0-develop.6",
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": 1752065531,
29
+ "publishDate": 1752079946,
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.4",
43
- "@progress/kendo-angular-common": "19.3.0-develop.4",
44
- "@progress/kendo-angular-dateinputs": "19.3.0-develop.4",
45
- "@progress/kendo-angular-layout": "19.3.0-develop.4",
46
- "@progress/kendo-angular-navigation": "19.3.0-develop.4",
47
- "@progress/kendo-angular-dropdowns": "19.3.0-develop.4",
48
- "@progress/kendo-angular-excel-export": "19.3.0-develop.4",
49
- "@progress/kendo-angular-icons": "19.3.0-develop.4",
50
- "@progress/kendo-angular-inputs": "19.3.0-develop.4",
51
- "@progress/kendo-angular-intl": "19.3.0-develop.4",
52
- "@progress/kendo-angular-l10n": "19.3.0-develop.4",
53
- "@progress/kendo-angular-label": "19.3.0-develop.4",
54
- "@progress/kendo-angular-pager": "19.3.0-develop.4",
55
- "@progress/kendo-angular-pdf-export": "19.3.0-develop.4",
56
- "@progress/kendo-angular-popup": "19.3.0-develop.4",
57
- "@progress/kendo-angular-toolbar": "19.3.0-develop.4",
58
- "@progress/kendo-angular-utils": "19.3.0-develop.4",
42
+ "@progress/kendo-angular-buttons": "19.3.0-develop.6",
43
+ "@progress/kendo-angular-common": "19.3.0-develop.6",
44
+ "@progress/kendo-angular-dateinputs": "19.3.0-develop.6",
45
+ "@progress/kendo-angular-layout": "19.3.0-develop.6",
46
+ "@progress/kendo-angular-navigation": "19.3.0-develop.6",
47
+ "@progress/kendo-angular-dropdowns": "19.3.0-develop.6",
48
+ "@progress/kendo-angular-excel-export": "19.3.0-develop.6",
49
+ "@progress/kendo-angular-icons": "19.3.0-develop.6",
50
+ "@progress/kendo-angular-inputs": "19.3.0-develop.6",
51
+ "@progress/kendo-angular-intl": "19.3.0-develop.6",
52
+ "@progress/kendo-angular-l10n": "19.3.0-develop.6",
53
+ "@progress/kendo-angular-label": "19.3.0-develop.6",
54
+ "@progress/kendo-angular-pager": "19.3.0-develop.6",
55
+ "@progress/kendo-angular-pdf-export": "19.3.0-develop.6",
56
+ "@progress/kendo-angular-popup": "19.3.0-develop.6",
57
+ "@progress/kendo-angular-toolbar": "19.3.0-develop.6",
58
+ "@progress/kendo-angular-utils": "19.3.0-develop.6",
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.4",
63
+ "@progress/kendo-angular-schematics": "19.3.0-develop.6",
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.4',
8
- '@progress/kendo-angular-navigation': '19.3.0-develop.4',
7
+ '@progress/kendo-angular-treeview': '19.3.0-develop.6',
8
+ '@progress/kendo-angular-navigation': '19.3.0-develop.6',
9
9
  // peer dependency of kendo-angular-inputs
10
- '@progress/kendo-angular-dialog': '19.3.0-develop.4',
10
+ '@progress/kendo-angular-dialog': '19.3.0-develop.6',
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.4'
14
+ '@progress/kendo-angular-progressbar': '19.3.0-develop.6'
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
  */