@progress/kendo-angular-grid 19.3.0-develop.4 → 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.
- package/esm2022/adaptiveness/adaptive-renderer.component.mjs +1 -2
- package/esm2022/column-menu/column-menu.component.mjs +1 -1
- package/esm2022/editing/form/form-formfield.component.mjs +1 -1
- package/esm2022/filtering/cell/boolean-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/cell/date-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/cell/filter-cell-operators.component.mjs +1 -2
- package/esm2022/filtering/cell/numeric-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/cell/string-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/filter-row.component.mjs +1 -1
- package/esm2022/filtering/menu/boolean-filter-menu.component.mjs +1 -2
- package/esm2022/filtering/menu/date-filter-menu-input.component.mjs +1 -1
- package/esm2022/filtering/menu/date-filter-menu.component.mjs +1 -1
- package/esm2022/filtering/menu/filter-menu-input-wrapper.component.mjs +1 -1
- package/esm2022/filtering/menu/filter-menu.component.mjs +1 -1
- package/esm2022/filtering/menu/numeric-filter-menu-input.component.mjs +1 -1
- package/esm2022/filtering/menu/numeric-filter-menu.component.mjs +1 -1
- package/esm2022/filtering/menu/string-filter-menu-input.component.mjs +1 -1
- package/esm2022/filtering/menu/string-filter-menu.component.mjs +1 -1
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/utils.mjs +0 -4
- package/fesm2022/progress-kendo-angular-grid.mjs +3 -7
- package/package.json +20 -20
- package/schematics/ngAdd/index.js +4 -4
- 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 '
|
|
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:
|
|
14
|
-
version: '19.3.0-develop.
|
|
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';
|
|
@@ -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:
|
|
21230
|
-
version: '19.3.0-develop.
|
|
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
|
+
"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":
|
|
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.
|
|
43
|
-
"@progress/kendo-angular-common": "19.3.0-develop.
|
|
44
|
-
"@progress/kendo-angular-dateinputs": "19.3.0-develop.
|
|
45
|
-
"@progress/kendo-angular-layout": "19.3.0-develop.
|
|
46
|
-
"@progress/kendo-angular-navigation": "19.3.0-develop.
|
|
47
|
-
"@progress/kendo-angular-dropdowns": "19.3.0-develop.
|
|
48
|
-
"@progress/kendo-angular-excel-export": "19.3.0-develop.
|
|
49
|
-
"@progress/kendo-angular-icons": "19.3.0-develop.
|
|
50
|
-
"@progress/kendo-angular-inputs": "19.3.0-develop.
|
|
51
|
-
"@progress/kendo-angular-intl": "19.3.0-develop.
|
|
52
|
-
"@progress/kendo-angular-l10n": "19.3.0-develop.
|
|
53
|
-
"@progress/kendo-angular-label": "19.3.0-develop.
|
|
54
|
-
"@progress/kendo-angular-pager": "19.3.0-develop.
|
|
55
|
-
"@progress/kendo-angular-pdf-export": "19.3.0-develop.
|
|
56
|
-
"@progress/kendo-angular-popup": "19.3.0-develop.
|
|
57
|
-
"@progress/kendo-angular-toolbar": "19.3.0-develop.
|
|
58
|
-
"@progress/kendo-angular-utils": "19.3.0-develop.
|
|
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.
|
|
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.
|
|
8
|
-
'@progress/kendo-angular-navigation': '19.3.0-develop.
|
|
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.
|
|
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.
|
|
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
|
*/
|