@progress/kendo-angular-grid 18.5.0-develop.7 → 18.5.0-develop.8
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/filtering/cell/filter-cell-host.directive.mjs +5 -5
- package/esm2022/filtering/filter-host.directive.mjs +5 -7
- package/esm2022/filtering/menu/filter-menu-host.directive.mjs +5 -5
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-grid.mjs +14 -16
- package/filtering/cell/filter-cell-host.directive.d.ts +2 -2
- package/filtering/filter-host.directive.d.ts +2 -3
- package/filtering/menu/filter-menu-host.directive.d.ts +2 -2
- package/package.json +19 -19
- package/schematics/ngAdd/index.js +4 -4
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Directive, ViewContainerRef
|
|
5
|
+
import { Directive, ViewContainerRef } from "@angular/core";
|
|
6
6
|
import { FilterHostDirective } from "../filter-host.directive";
|
|
7
7
|
import { isNullOrEmptyString } from "../../utils";
|
|
8
8
|
import { filterComponentFactory } from "./filter-cell-component.factory";
|
|
@@ -12,8 +12,8 @@ import * as i0 from "@angular/core";
|
|
|
12
12
|
* @hidden
|
|
13
13
|
*/
|
|
14
14
|
export class FilterCellHostDirective extends FilterHostDirective {
|
|
15
|
-
constructor(host
|
|
16
|
-
super(host
|
|
15
|
+
constructor(host) {
|
|
16
|
+
super(host);
|
|
17
17
|
}
|
|
18
18
|
componentType() {
|
|
19
19
|
if (!isNullOrEmptyString(this.column.filter)) {
|
|
@@ -21,7 +21,7 @@ export class FilterCellHostDirective extends FilterHostDirective {
|
|
|
21
21
|
}
|
|
22
22
|
return StringFilterCellComponent;
|
|
23
23
|
}
|
|
24
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCellHostDirective, deps: [{ token: i0.ViewContainerRef }
|
|
24
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCellHostDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
25
25
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterCellHostDirective, isStandalone: true, selector: "[kendoFilterCellHost]", usesInheritance: true, ngImport: i0 });
|
|
26
26
|
}
|
|
27
27
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCellHostDirective, decorators: [{
|
|
@@ -30,4 +30,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
30
30
|
selector: '[kendoFilterCellHost]',
|
|
31
31
|
standalone: true
|
|
32
32
|
}]
|
|
33
|
-
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }
|
|
33
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Input, ViewContainerRef,
|
|
5
|
+
import { Input, ViewContainerRef, Directive } from '@angular/core';
|
|
6
6
|
import { ColumnComponent } from '../columns/column.component';
|
|
7
7
|
import { anyChanged } from '../utils';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
@@ -11,16 +11,14 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
*/
|
|
12
12
|
export class FilterHostDirective {
|
|
13
13
|
host;
|
|
14
|
-
resolver;
|
|
15
14
|
column;
|
|
16
15
|
filter;
|
|
17
16
|
component;
|
|
18
|
-
constructor(host
|
|
17
|
+
constructor(host) {
|
|
19
18
|
this.host = host;
|
|
20
|
-
this.resolver = resolver;
|
|
21
19
|
}
|
|
22
20
|
ngOnInit() {
|
|
23
|
-
this.component = this.host.createComponent(this.
|
|
21
|
+
this.component = this.host.createComponent(this.componentType());
|
|
24
22
|
this.initComponent({
|
|
25
23
|
column: this.column,
|
|
26
24
|
filter: this.filter
|
|
@@ -45,7 +43,7 @@ export class FilterHostDirective {
|
|
|
45
43
|
instance.column = column;
|
|
46
44
|
instance.filter = filter;
|
|
47
45
|
}
|
|
48
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterHostDirective, deps: [{ token: i0.ViewContainerRef }
|
|
46
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterHostDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
49
47
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterHostDirective, selector: "[kendoGridFilterHostBase]", inputs: { column: "column", filter: "filter" }, usesOnChanges: true, ngImport: i0 });
|
|
50
48
|
}
|
|
51
49
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterHostDirective, decorators: [{
|
|
@@ -53,7 +51,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
53
51
|
args: [{
|
|
54
52
|
selector: '[kendoGridFilterHostBase]'
|
|
55
53
|
}]
|
|
56
|
-
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }
|
|
54
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { column: [{
|
|
57
55
|
type: Input
|
|
58
56
|
}], filter: [{
|
|
59
57
|
type: Input
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { MenuTabbingService } from './menu-tabbing.service';
|
|
6
|
-
import { Directive, ViewContainerRef,
|
|
6
|
+
import { Directive, ViewContainerRef, Input } from "@angular/core";
|
|
7
7
|
import { FilterHostDirective } from "../filter-host.directive";
|
|
8
8
|
import { isNullOrEmptyString, isPresent } from "../../utils";
|
|
9
9
|
import { filterMenuComponentFactory } from "./filter-menu-component.factory";
|
|
@@ -16,8 +16,8 @@ import * as i0 from "@angular/core";
|
|
|
16
16
|
export class FilterMenuHostDirective extends FilterHostDirective {
|
|
17
17
|
filterService;
|
|
18
18
|
menuTabbingService;
|
|
19
|
-
constructor(host
|
|
20
|
-
super(host
|
|
19
|
+
constructor(host) {
|
|
20
|
+
super(host);
|
|
21
21
|
}
|
|
22
22
|
componentType() {
|
|
23
23
|
if (isPresent(this.column) && !isNullOrEmptyString(this.column.filter)) {
|
|
@@ -30,7 +30,7 @@ export class FilterMenuHostDirective extends FilterHostDirective {
|
|
|
30
30
|
this.component.instance.filterService = this.filterService;
|
|
31
31
|
this.component.instance.menuTabbingService = this.menuTabbingService;
|
|
32
32
|
}
|
|
33
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuHostDirective, deps: [{ token: i0.ViewContainerRef }
|
|
33
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuHostDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
34
34
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterMenuHostDirective, isStandalone: true, selector: "[kendoFilterMenuHost]", inputs: { filterService: "filterService", menuTabbingService: "menuTabbingService" }, usesInheritance: true, ngImport: i0 });
|
|
35
35
|
}
|
|
36
36
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuHostDirective, decorators: [{
|
|
@@ -39,7 +39,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
39
39
|
selector: '[kendoFilterMenuHost]',
|
|
40
40
|
standalone: true
|
|
41
41
|
}]
|
|
42
|
-
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }
|
|
42
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { filterService: [{
|
|
43
43
|
type: Input
|
|
44
44
|
}], menuTabbingService: [{
|
|
45
45
|
type: Input
|
|
@@ -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: '18.5.0-develop.
|
|
13
|
+
publishDate: 1744029097,
|
|
14
|
+
version: '18.5.0-develop.8',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -7648,16 +7648,14 @@ const diffFilters = (a, b) => {
|
|
|
7648
7648
|
*/
|
|
7649
7649
|
class FilterHostDirective {
|
|
7650
7650
|
host;
|
|
7651
|
-
resolver;
|
|
7652
7651
|
column;
|
|
7653
7652
|
filter;
|
|
7654
7653
|
component;
|
|
7655
|
-
constructor(host
|
|
7654
|
+
constructor(host) {
|
|
7656
7655
|
this.host = host;
|
|
7657
|
-
this.resolver = resolver;
|
|
7658
7656
|
}
|
|
7659
7657
|
ngOnInit() {
|
|
7660
|
-
this.component = this.host.createComponent(this.
|
|
7658
|
+
this.component = this.host.createComponent(this.componentType());
|
|
7661
7659
|
this.initComponent({
|
|
7662
7660
|
column: this.column,
|
|
7663
7661
|
filter: this.filter
|
|
@@ -7682,7 +7680,7 @@ class FilterHostDirective {
|
|
|
7682
7680
|
instance.column = column;
|
|
7683
7681
|
instance.filter = filter;
|
|
7684
7682
|
}
|
|
7685
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterHostDirective, deps: [{ token: i0.ViewContainerRef }
|
|
7683
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterHostDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
7686
7684
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterHostDirective, selector: "[kendoGridFilterHostBase]", inputs: { column: "column", filter: "filter" }, usesOnChanges: true, ngImport: i0 });
|
|
7687
7685
|
}
|
|
7688
7686
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterHostDirective, decorators: [{
|
|
@@ -7690,7 +7688,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
7690
7688
|
args: [{
|
|
7691
7689
|
selector: '[kendoGridFilterHostBase]'
|
|
7692
7690
|
}]
|
|
7693
|
-
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }
|
|
7691
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { column: [{
|
|
7694
7692
|
type: Input
|
|
7695
7693
|
}], filter: [{
|
|
7696
7694
|
type: Input
|
|
@@ -9565,8 +9563,8 @@ const filterMenuComponentFactory = (type) => ({
|
|
|
9565
9563
|
class FilterMenuHostDirective extends FilterHostDirective {
|
|
9566
9564
|
filterService;
|
|
9567
9565
|
menuTabbingService;
|
|
9568
|
-
constructor(host
|
|
9569
|
-
super(host
|
|
9566
|
+
constructor(host) {
|
|
9567
|
+
super(host);
|
|
9570
9568
|
}
|
|
9571
9569
|
componentType() {
|
|
9572
9570
|
if (isPresent(this.column) && !isNullOrEmptyString(this.column.filter)) {
|
|
@@ -9579,7 +9577,7 @@ class FilterMenuHostDirective extends FilterHostDirective {
|
|
|
9579
9577
|
this.component.instance.filterService = this.filterService;
|
|
9580
9578
|
this.component.instance.menuTabbingService = this.menuTabbingService;
|
|
9581
9579
|
}
|
|
9582
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuHostDirective, deps: [{ token: i0.ViewContainerRef }
|
|
9580
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuHostDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
9583
9581
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterMenuHostDirective, isStandalone: true, selector: "[kendoFilterMenuHost]", inputs: { filterService: "filterService", menuTabbingService: "menuTabbingService" }, usesInheritance: true, ngImport: i0 });
|
|
9584
9582
|
}
|
|
9585
9583
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuHostDirective, decorators: [{
|
|
@@ -9588,7 +9586,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
9588
9586
|
selector: '[kendoFilterMenuHost]',
|
|
9589
9587
|
standalone: true
|
|
9590
9588
|
}]
|
|
9591
|
-
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }
|
|
9589
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { filterService: [{
|
|
9592
9590
|
type: Input
|
|
9593
9591
|
}], menuTabbingService: [{
|
|
9594
9592
|
type: Input
|
|
@@ -10686,8 +10684,8 @@ const filterComponentFactory = (type) => ({
|
|
|
10686
10684
|
* @hidden
|
|
10687
10685
|
*/
|
|
10688
10686
|
class FilterCellHostDirective extends FilterHostDirective {
|
|
10689
|
-
constructor(host
|
|
10690
|
-
super(host
|
|
10687
|
+
constructor(host) {
|
|
10688
|
+
super(host);
|
|
10691
10689
|
}
|
|
10692
10690
|
componentType() {
|
|
10693
10691
|
if (!isNullOrEmptyString(this.column.filter)) {
|
|
@@ -10695,7 +10693,7 @@ class FilterCellHostDirective extends FilterHostDirective {
|
|
|
10695
10693
|
}
|
|
10696
10694
|
return StringFilterCellComponent;
|
|
10697
10695
|
}
|
|
10698
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCellHostDirective, deps: [{ token: i0.ViewContainerRef }
|
|
10696
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCellHostDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
10699
10697
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterCellHostDirective, isStandalone: true, selector: "[kendoFilterCellHost]", usesInheritance: true, ngImport: i0 });
|
|
10700
10698
|
}
|
|
10701
10699
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCellHostDirective, decorators: [{
|
|
@@ -10704,7 +10702,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
10704
10702
|
selector: '[kendoFilterCellHost]',
|
|
10705
10703
|
standalone: true
|
|
10706
10704
|
}]
|
|
10707
|
-
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }
|
|
10705
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
10708
10706
|
|
|
10709
10707
|
/**
|
|
10710
10708
|
* @hidden
|
|
@@ -19833,8 +19831,8 @@ const packageMetadata = {
|
|
|
19833
19831
|
productName: 'Kendo UI for Angular',
|
|
19834
19832
|
productCode: 'KENDOUIANGULAR',
|
|
19835
19833
|
productCodes: ['KENDOUIANGULAR'],
|
|
19836
|
-
publishDate:
|
|
19837
|
-
version: '18.5.0-develop.
|
|
19834
|
+
publishDate: 1744029097,
|
|
19835
|
+
version: '18.5.0-develop.8',
|
|
19838
19836
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
19839
19837
|
};
|
|
19840
19838
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Type, ViewContainerRef
|
|
5
|
+
import { Type, ViewContainerRef } from "@angular/core";
|
|
6
6
|
import { FilterHostDirective } from "../filter-host.directive";
|
|
7
7
|
import { FilterComponent } from "../filter-component.interface";
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
@@ -10,7 +10,7 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
* @hidden
|
|
11
11
|
*/
|
|
12
12
|
export declare class FilterCellHostDirective extends FilterHostDirective {
|
|
13
|
-
constructor(host: ViewContainerRef
|
|
13
|
+
constructor(host: ViewContainerRef);
|
|
14
14
|
protected componentType(): Type<FilterComponent>;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterCellHostDirective, never>;
|
|
16
16
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FilterCellHostDirective, "[kendoFilterCellHost]", never, {}, {}, never, never, true, never>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Type, ViewContainerRef, OnInit, OnDestroy, OnChanges, ComponentRef,
|
|
5
|
+
import { Type, ViewContainerRef, OnInit, OnDestroy, OnChanges, ComponentRef, SimpleChange } from '@angular/core';
|
|
6
6
|
import { ColumnComponent } from '../columns/column.component';
|
|
7
7
|
import { CompositeFilterDescriptor } from '@progress/kendo-data-query';
|
|
8
8
|
import { FilterComponent } from './filter-component.interface';
|
|
@@ -19,11 +19,10 @@ export type Context = {
|
|
|
19
19
|
*/
|
|
20
20
|
export declare abstract class FilterHostDirective implements OnInit, OnDestroy, OnChanges {
|
|
21
21
|
private host;
|
|
22
|
-
private resolver;
|
|
23
22
|
column: ColumnComponent;
|
|
24
23
|
filter: CompositeFilterDescriptor;
|
|
25
24
|
protected component: ComponentRef<FilterComponent>;
|
|
26
|
-
constructor(host: ViewContainerRef
|
|
25
|
+
constructor(host: ViewContainerRef);
|
|
27
26
|
ngOnInit(): void;
|
|
28
27
|
ngOnDestroy(): void;
|
|
29
28
|
ngOnChanges(changes: {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { MenuTabbingService } from './menu-tabbing.service';
|
|
6
|
-
import { Type, ViewContainerRef
|
|
6
|
+
import { Type, ViewContainerRef } from "@angular/core";
|
|
7
7
|
import { FilterHostDirective, Context } from "../filter-host.directive";
|
|
8
8
|
import { FilterComponent } from "../filter-component.interface";
|
|
9
9
|
import { FilterService } from "../filter.service";
|
|
@@ -14,7 +14,7 @@ import * as i0 from "@angular/core";
|
|
|
14
14
|
export declare class FilterMenuHostDirective extends FilterHostDirective {
|
|
15
15
|
filterService: FilterService;
|
|
16
16
|
menuTabbingService: MenuTabbingService;
|
|
17
|
-
constructor(host: ViewContainerRef
|
|
17
|
+
constructor(host: ViewContainerRef);
|
|
18
18
|
protected componentType(): Type<FilterComponent>;
|
|
19
19
|
protected initComponent(ctx: Context): void;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterMenuHostDirective, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "18.5.0-develop.
|
|
3
|
+
"version": "18.5.0-develop.8",
|
|
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": 1744029097,
|
|
30
30
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
31
31
|
}
|
|
32
32
|
},
|
|
@@ -39,27 +39,27 @@
|
|
|
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": "18.5.0-develop.
|
|
43
|
-
"@progress/kendo-angular-common": "18.5.0-develop.
|
|
44
|
-
"@progress/kendo-angular-dateinputs": "18.5.0-develop.
|
|
45
|
-
"@progress/kendo-angular-layout": "18.5.0-develop.
|
|
46
|
-
"@progress/kendo-angular-dropdowns": "18.5.0-develop.
|
|
47
|
-
"@progress/kendo-angular-excel-export": "18.5.0-develop.
|
|
48
|
-
"@progress/kendo-angular-icons": "18.5.0-develop.
|
|
49
|
-
"@progress/kendo-angular-inputs": "18.5.0-develop.
|
|
50
|
-
"@progress/kendo-angular-intl": "18.5.0-develop.
|
|
51
|
-
"@progress/kendo-angular-l10n": "18.5.0-develop.
|
|
52
|
-
"@progress/kendo-angular-label": "18.5.0-develop.
|
|
53
|
-
"@progress/kendo-angular-pager": "18.5.0-develop.
|
|
54
|
-
"@progress/kendo-angular-pdf-export": "18.5.0-develop.
|
|
55
|
-
"@progress/kendo-angular-popup": "18.5.0-develop.
|
|
56
|
-
"@progress/kendo-angular-toolbar": "18.5.0-develop.
|
|
57
|
-
"@progress/kendo-angular-utils": "18.5.0-develop.
|
|
42
|
+
"@progress/kendo-angular-buttons": "18.5.0-develop.8",
|
|
43
|
+
"@progress/kendo-angular-common": "18.5.0-develop.8",
|
|
44
|
+
"@progress/kendo-angular-dateinputs": "18.5.0-develop.8",
|
|
45
|
+
"@progress/kendo-angular-layout": "18.5.0-develop.8",
|
|
46
|
+
"@progress/kendo-angular-dropdowns": "18.5.0-develop.8",
|
|
47
|
+
"@progress/kendo-angular-excel-export": "18.5.0-develop.8",
|
|
48
|
+
"@progress/kendo-angular-icons": "18.5.0-develop.8",
|
|
49
|
+
"@progress/kendo-angular-inputs": "18.5.0-develop.8",
|
|
50
|
+
"@progress/kendo-angular-intl": "18.5.0-develop.8",
|
|
51
|
+
"@progress/kendo-angular-l10n": "18.5.0-develop.8",
|
|
52
|
+
"@progress/kendo-angular-label": "18.5.0-develop.8",
|
|
53
|
+
"@progress/kendo-angular-pager": "18.5.0-develop.8",
|
|
54
|
+
"@progress/kendo-angular-pdf-export": "18.5.0-develop.8",
|
|
55
|
+
"@progress/kendo-angular-popup": "18.5.0-develop.8",
|
|
56
|
+
"@progress/kendo-angular-toolbar": "18.5.0-develop.8",
|
|
57
|
+
"@progress/kendo-angular-utils": "18.5.0-develop.8",
|
|
58
58
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"tslib": "^2.3.1",
|
|
62
|
-
"@progress/kendo-angular-schematics": "18.5.0-develop.
|
|
62
|
+
"@progress/kendo-angular-schematics": "18.5.0-develop.8",
|
|
63
63
|
"@progress/kendo-common": "^1.0.1",
|
|
64
64
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
65
65
|
},
|
|
@@ -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': '18.5.0-develop.
|
|
8
|
-
'@progress/kendo-angular-navigation': '18.5.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '18.5.0-develop.8',
|
|
8
|
+
'@progress/kendo-angular-navigation': '18.5.0-develop.8',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
|
-
'@progress/kendo-angular-dialog': '18.5.0-develop.
|
|
10
|
+
'@progress/kendo-angular-dialog': '18.5.0-develop.8',
|
|
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': '18.5.0-develop.
|
|
14
|
+
'@progress/kendo-angular-progressbar': '18.5.0-develop.8'
|
|
15
15
|
} });
|
|
16
16
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
17
17
|
}
|