@progress/kendo-angular-grid 19.2.0-develop.12 → 19.2.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/README.md +8 -3
- package/esm2022/grouping/group-scroll-binding.directive.mjs +6 -0
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/rendering/list.component.mjs +1 -1
- package/fesm2022/progress-kendo-angular-grid.mjs +9 -3
- package/package.json +20 -20
- package/schematics/ngAdd/index.js +4 -4
package/README.md
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
## Kendo UI for Angular Data Grid Component
|
|
6
6
|
|
|
7
|
-
> * This package is part of
|
|
8
|
-
> *
|
|
9
|
-
> *
|
|
7
|
+
> * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/)—a commercial UI library.
|
|
8
|
+
> * To use this package, you must install a license key file, whether you are on a paid license or a 30-day free trial. To receive a license key, either [purchase a license](https://www.telerik.com/purchase/kendo-ui) or start a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui).
|
|
9
|
+
> * Adding a valid license key file ensures a seamless experience during the trial period—no watermarks, no warnings, and full access to all components and features.
|
|
10
|
+
> * Trial users can register for a free license key file. Without it, your trial may be interrupted by visual indicators or functionality limitations.
|
|
11
|
+
> * Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular team!
|
|
12
|
+
> * Learn more: https://www.telerik.com/kendo-angular-ui/components/licensing
|
|
13
|
+
>
|
|
14
|
+
> [Start using Kendo UI for Angular](https://www.telerik.com/download-login-v2-kendo-angular-ui) and speed up your development process!
|
|
10
15
|
|
|
11
16
|
The [Kendo UI for Angular Data Grid](https://www.telerik.com/kendo-angular-ui/components/grid) includes a comprehensive set of ready-to-use features covering everything from paging, sorting, filtering, editing, and grouping to row and column virtualization, exporting to PDF and Excel, and accessibility support. This Data Grid Component (sometimes called a Data Table) is built on Angular from the ground up, by a company with a long history of making enterprise-ready Grids. This results in an Angular data grid that delivers lighting fast performance and is highly customizable.
|
|
12
17
|
|
|
@@ -284,6 +284,12 @@ export class GroupBindingDirective extends DataBindingDirective {
|
|
|
284
284
|
this.grid.data = this.dataResult(this.state.skip, this.state.take);
|
|
285
285
|
}
|
|
286
286
|
process(state) {
|
|
287
|
+
if (this.grid.isVirtual && (!isPresent(state.take) || state.take === 0)) {
|
|
288
|
+
return {
|
|
289
|
+
data: [],
|
|
290
|
+
total: this.originalData?.length || 0
|
|
291
|
+
};
|
|
292
|
+
}
|
|
287
293
|
if (state.group && state.group.length) {
|
|
288
294
|
const groups = this.processGroups(state);
|
|
289
295
|
this.grid.skip -= skippedHeaders(groups.data[0]);
|
|
@@ -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.2.0-develop.
|
|
13
|
+
publishDate: 1751450548,
|
|
14
|
+
version: '19.2.0-develop.14',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -274,7 +274,7 @@ export class ListComponent {
|
|
|
274
274
|
if (shouldCalculatePageSize) {
|
|
275
275
|
const calculatedPageSize = this.calcVirtualPageSize();
|
|
276
276
|
if (calculatedPageSize > 0) {
|
|
277
|
-
this.ngZone.
|
|
277
|
+
this.ngZone.onStable.pipe(take(1)).subscribe(() => {
|
|
278
278
|
this.ctx.grid.pageSize = calculatedPageSize;
|
|
279
279
|
this.ngZone.run(() => {
|
|
280
280
|
this.pageChange.emit({
|
|
@@ -21214,8 +21214,8 @@ const packageMetadata = {
|
|
|
21214
21214
|
productName: 'Kendo UI for Angular',
|
|
21215
21215
|
productCode: 'KENDOUIANGULAR',
|
|
21216
21216
|
productCodes: ['KENDOUIANGULAR'],
|
|
21217
|
-
publishDate:
|
|
21218
|
-
version: '19.2.0-develop.
|
|
21217
|
+
publishDate: 1751450548,
|
|
21218
|
+
version: '19.2.0-develop.14',
|
|
21219
21219
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
21220
21220
|
};
|
|
21221
21221
|
|
|
@@ -23600,7 +23600,7 @@ class ListComponent {
|
|
|
23600
23600
|
if (shouldCalculatePageSize) {
|
|
23601
23601
|
const calculatedPageSize = this.calcVirtualPageSize();
|
|
23602
23602
|
if (calculatedPageSize > 0) {
|
|
23603
|
-
this.ngZone.
|
|
23603
|
+
this.ngZone.onStable.pipe(take(1)).subscribe(() => {
|
|
23604
23604
|
this.ctx.grid.pageSize = calculatedPageSize;
|
|
23605
23605
|
this.ngZone.run(() => {
|
|
23606
23606
|
this.pageChange.emit({
|
|
@@ -33141,6 +33141,12 @@ class GroupBindingDirective extends DataBindingDirective {
|
|
|
33141
33141
|
this.grid.data = this.dataResult(this.state.skip, this.state.take);
|
|
33142
33142
|
}
|
|
33143
33143
|
process(state) {
|
|
33144
|
+
if (this.grid.isVirtual && (!isPresent(state.take) || state.take === 0)) {
|
|
33145
|
+
return {
|
|
33146
|
+
data: [],
|
|
33147
|
+
total: this.originalData?.length || 0
|
|
33148
|
+
};
|
|
33149
|
+
}
|
|
33144
33150
|
if (state.group && state.group.length) {
|
|
33145
33151
|
const groups = this.processGroups(state);
|
|
33146
33152
|
this.grid.skip -= skippedHeaders(groups.data[0]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "19.2.0-develop.
|
|
3
|
+
"version": "19.2.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": 1751450548,
|
|
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.2.0-develop.
|
|
43
|
-
"@progress/kendo-angular-common": "19.2.0-develop.
|
|
44
|
-
"@progress/kendo-angular-dateinputs": "19.2.0-develop.
|
|
45
|
-
"@progress/kendo-angular-layout": "19.2.0-develop.
|
|
46
|
-
"@progress/kendo-angular-navigation": "19.2.0-develop.
|
|
47
|
-
"@progress/kendo-angular-dropdowns": "19.2.0-develop.
|
|
48
|
-
"@progress/kendo-angular-excel-export": "19.2.0-develop.
|
|
49
|
-
"@progress/kendo-angular-icons": "19.2.0-develop.
|
|
50
|
-
"@progress/kendo-angular-inputs": "19.2.0-develop.
|
|
51
|
-
"@progress/kendo-angular-intl": "19.2.0-develop.
|
|
52
|
-
"@progress/kendo-angular-l10n": "19.2.0-develop.
|
|
53
|
-
"@progress/kendo-angular-label": "19.2.0-develop.
|
|
54
|
-
"@progress/kendo-angular-pager": "19.2.0-develop.
|
|
55
|
-
"@progress/kendo-angular-pdf-export": "19.2.0-develop.
|
|
56
|
-
"@progress/kendo-angular-popup": "19.2.0-develop.
|
|
57
|
-
"@progress/kendo-angular-toolbar": "19.2.0-develop.
|
|
58
|
-
"@progress/kendo-angular-utils": "19.2.0-develop.
|
|
42
|
+
"@progress/kendo-angular-buttons": "19.2.0-develop.14",
|
|
43
|
+
"@progress/kendo-angular-common": "19.2.0-develop.14",
|
|
44
|
+
"@progress/kendo-angular-dateinputs": "19.2.0-develop.14",
|
|
45
|
+
"@progress/kendo-angular-layout": "19.2.0-develop.14",
|
|
46
|
+
"@progress/kendo-angular-navigation": "19.2.0-develop.14",
|
|
47
|
+
"@progress/kendo-angular-dropdowns": "19.2.0-develop.14",
|
|
48
|
+
"@progress/kendo-angular-excel-export": "19.2.0-develop.14",
|
|
49
|
+
"@progress/kendo-angular-icons": "19.2.0-develop.14",
|
|
50
|
+
"@progress/kendo-angular-inputs": "19.2.0-develop.14",
|
|
51
|
+
"@progress/kendo-angular-intl": "19.2.0-develop.14",
|
|
52
|
+
"@progress/kendo-angular-l10n": "19.2.0-develop.14",
|
|
53
|
+
"@progress/kendo-angular-label": "19.2.0-develop.14",
|
|
54
|
+
"@progress/kendo-angular-pager": "19.2.0-develop.14",
|
|
55
|
+
"@progress/kendo-angular-pdf-export": "19.2.0-develop.14",
|
|
56
|
+
"@progress/kendo-angular-popup": "19.2.0-develop.14",
|
|
57
|
+
"@progress/kendo-angular-toolbar": "19.2.0-develop.14",
|
|
58
|
+
"@progress/kendo-angular-utils": "19.2.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.2.0-develop.
|
|
63
|
+
"@progress/kendo-angular-schematics": "19.2.0-develop.14",
|
|
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.2.0-develop.
|
|
8
|
-
'@progress/kendo-angular-navigation': '19.2.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '19.2.0-develop.14',
|
|
8
|
+
'@progress/kendo-angular-navigation': '19.2.0-develop.14',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
|
-
'@progress/kendo-angular-dialog': '19.2.0-develop.
|
|
10
|
+
'@progress/kendo-angular-dialog': '19.2.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.2.0-develop.
|
|
14
|
+
'@progress/kendo-angular-progressbar': '19.2.0-develop.14'
|
|
15
15
|
} });
|
|
16
16
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
17
17
|
}
|