@progress/kendo-angular-grid 19.3.0-develop.12 → 19.3.0-develop.14
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/editing-directives/in-cell-editing.directive.mjs +1 -0
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/rendering/list.component.mjs +1 -1
- package/fesm2022/progress-kendo-angular-grid.mjs +4 -3
- package/package.json +20 -20
- package/rendering/cell.component.d.ts +2 -2
- package/schematics/ngAdd/index.js +4 -4
|
@@ -79,6 +79,7 @@ export class InCellEditingDirective extends EditingDirectiveBase {
|
|
|
79
79
|
this.editService.assignValues(dataItem, formGroup.value);
|
|
80
80
|
this.editService.update(dataItem);
|
|
81
81
|
}
|
|
82
|
+
this.cdr.markForCheck();
|
|
82
83
|
}
|
|
83
84
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InCellEditingDirective, deps: [{ token: i1.GridComponent }, { token: i2.LocalDataChangesService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
84
85
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: InCellEditingDirective, isStandalone: true, selector: "[kendoGridInCellEditing]", inputs: { createFormGroup: ["kendoGridInCellEditing", "createFormGroup"] }, usesInheritance: true, ngImport: i0 });
|
|
@@ -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: 1753343882,
|
|
14
|
+
version: '19.3.0-develop.14',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -270,7 +270,7 @@ export class ListComponent {
|
|
|
270
270
|
if (this.virtualColumns && (!this.viewportColumns || this.viewportWidthChange())) {
|
|
271
271
|
this.updateViewportColumns();
|
|
272
272
|
}
|
|
273
|
-
const shouldCalculatePageSize = isDocumentAvailable() && this.isVirtual && this.ctx.grid && !this.ctx.grid.pageSize;
|
|
273
|
+
const shouldCalculatePageSize = isDocumentAvailable() && this.isVirtual && this.ctx.grid && !isPresent(this.ctx.grid.pageSize);
|
|
274
274
|
if (shouldCalculatePageSize) {
|
|
275
275
|
const calculatedPageSize = this.calcVirtualPageSize();
|
|
276
276
|
if (calculatedPageSize > 0) {
|
|
@@ -21222,8 +21222,8 @@ const packageMetadata = {
|
|
|
21222
21222
|
productName: 'Kendo UI for Angular',
|
|
21223
21223
|
productCode: 'KENDOUIANGULAR',
|
|
21224
21224
|
productCodes: ['KENDOUIANGULAR'],
|
|
21225
|
-
publishDate:
|
|
21226
|
-
version: '19.3.0-develop.
|
|
21225
|
+
publishDate: 1753343882,
|
|
21226
|
+
version: '19.3.0-develop.14',
|
|
21227
21227
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
21228
21228
|
};
|
|
21229
21229
|
|
|
@@ -23606,7 +23606,7 @@ class ListComponent {
|
|
|
23606
23606
|
if (this.virtualColumns && (!this.viewportColumns || this.viewportWidthChange())) {
|
|
23607
23607
|
this.updateViewportColumns();
|
|
23608
23608
|
}
|
|
23609
|
-
const shouldCalculatePageSize = isDocumentAvailable() && this.isVirtual && this.ctx.grid && !this.ctx.grid.pageSize;
|
|
23609
|
+
const shouldCalculatePageSize = isDocumentAvailable() && this.isVirtual && this.ctx.grid && !isPresent(this.ctx.grid.pageSize);
|
|
23610
23610
|
if (shouldCalculatePageSize) {
|
|
23611
23611
|
const calculatedPageSize = this.calcVirtualPageSize();
|
|
23612
23612
|
if (calculatedPageSize > 0) {
|
|
@@ -32471,6 +32471,7 @@ class InCellEditingDirective extends EditingDirectiveBase {
|
|
|
32471
32471
|
this.editService.assignValues(dataItem, formGroup.value);
|
|
32472
32472
|
this.editService.update(dataItem);
|
|
32473
32473
|
}
|
|
32474
|
+
this.cdr.markForCheck();
|
|
32474
32475
|
}
|
|
32475
32476
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InCellEditingDirective, deps: [{ token: GridComponent }, { token: LocalDataChangesService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
32476
32477
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: InCellEditingDirective, isStandalone: true, selector: "[kendoGridInCellEditing]", inputs: { createFormGroup: ["kendoGridInCellEditing", "createFormGroup"] }, usesInheritance: true, ngImport: i0 });
|
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.14",
|
|
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": 1753343882,
|
|
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.14",
|
|
43
|
+
"@progress/kendo-angular-common": "19.3.0-develop.14",
|
|
44
|
+
"@progress/kendo-angular-dateinputs": "19.3.0-develop.14",
|
|
45
|
+
"@progress/kendo-angular-layout": "19.3.0-develop.14",
|
|
46
|
+
"@progress/kendo-angular-navigation": "19.3.0-develop.14",
|
|
47
|
+
"@progress/kendo-angular-dropdowns": "19.3.0-develop.14",
|
|
48
|
+
"@progress/kendo-angular-excel-export": "19.3.0-develop.14",
|
|
49
|
+
"@progress/kendo-angular-icons": "19.3.0-develop.14",
|
|
50
|
+
"@progress/kendo-angular-inputs": "19.3.0-develop.14",
|
|
51
|
+
"@progress/kendo-angular-intl": "19.3.0-develop.14",
|
|
52
|
+
"@progress/kendo-angular-l10n": "19.3.0-develop.14",
|
|
53
|
+
"@progress/kendo-angular-label": "19.3.0-develop.14",
|
|
54
|
+
"@progress/kendo-angular-pager": "19.3.0-develop.14",
|
|
55
|
+
"@progress/kendo-angular-pdf-export": "19.3.0-develop.14",
|
|
56
|
+
"@progress/kendo-angular-popup": "19.3.0-develop.14",
|
|
57
|
+
"@progress/kendo-angular-toolbar": "19.3.0-develop.14",
|
|
58
|
+
"@progress/kendo-angular-utils": "19.3.0-develop.14",
|
|
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.14",
|
|
64
64
|
"@progress/kendo-common": "^1.0.1",
|
|
65
65
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
66
66
|
},
|
|
@@ -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 { DoCheck, TemplateRef } from '@angular/core';
|
|
5
|
+
import { DoCheck, TemplateRef, OnChanges, AfterContentChecked } from '@angular/core';
|
|
6
6
|
import { EditService } from '../editing/edit.service';
|
|
7
7
|
import { ColumnComponent } from '../columns/column.component';
|
|
8
8
|
import { FormGroup } from '@angular/forms';
|
|
@@ -14,7 +14,7 @@ import * as i0 from "@angular/core";
|
|
|
14
14
|
/**
|
|
15
15
|
* @hidden
|
|
16
16
|
*/
|
|
17
|
-
export declare class CellComponent implements DoCheck {
|
|
17
|
+
export declare class CellComponent implements DoCheck, OnChanges, AfterContentChecked {
|
|
18
18
|
private editService;
|
|
19
19
|
private idService;
|
|
20
20
|
private ctx;
|
|
@@ -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.14',
|
|
8
|
+
'@progress/kendo-angular-navigation': '19.3.0-develop.14',
|
|
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.14',
|
|
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.14'
|
|
15
15
|
} });
|
|
16
16
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
17
17
|
}
|