@progress/kendo-angular-grid 21.4.0-develop.13 → 21.4.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/package-metadata.mjs +2 -2
- package/esm2022/selection/selectall-checkbox.directive.mjs +6 -8
- package/esm2022/selection/selection-default.mjs +1 -1
- package/esm2022/selection/selection.directive.mjs +1 -1
- package/fesm2022/progress-kendo-angular-grid.mjs +10 -12
- package/package.json +24 -24
- package/schematics/ngAdd/index.js +7 -7
- package/selection/selectall-checkbox.directive.d.ts +6 -8
- package/selection/selection-default.d.ts +1 -1
- package/selection/selection.directive.d.ts +1 -1
|
@@ -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: '21.4.0-develop.
|
|
13
|
+
publishDate: 1767861286,
|
|
14
|
+
version: '21.4.0-develop.14',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -13,17 +13,15 @@ import * as i1 from "./selection.service";
|
|
|
13
13
|
import * as i2 from "./cell-selection.service";
|
|
14
14
|
import * as i3 from "@progress/kendo-angular-inputs";
|
|
15
15
|
/**
|
|
16
|
-
* Adds a select-all checkbox to the Grid.
|
|
16
|
+
* Adds a select-all checkbox to the Grid. [See example](slug:grid_selection_persistence#selecting-all-rows).
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* ```html
|
|
20
|
-
* <
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
* (selectAllChange)="onSelectAllChange($event)"
|
|
26
|
-
* />
|
|
20
|
+
* <kendo-checkbox
|
|
21
|
+
* kendoGridSelectAllCheckbox
|
|
22
|
+
* [state]="selectAllState"
|
|
23
|
+
* (selectAllChange)="onSelectAllChange($event)"
|
|
24
|
+
* ></kendo-checkbox>
|
|
27
25
|
* ```
|
|
28
26
|
*/
|
|
29
27
|
export class SelectAllCheckboxDirective {
|
|
@@ -33,7 +33,7 @@ export class Selection {
|
|
|
33
33
|
rangeSelectionStartColumnIndex = 0;
|
|
34
34
|
/**
|
|
35
35
|
* Sets the item key to store in `selectedKeys`.
|
|
36
|
-
* [See example](slug:grid_selection_persistence#
|
|
36
|
+
* [See example](slug:grid_selection_persistence#using-data-item-field).
|
|
37
37
|
*/
|
|
38
38
|
selectionKey;
|
|
39
39
|
/**
|
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
import * as i1 from "../common/provider.service";
|
|
10
10
|
/**
|
|
11
11
|
* Stores the row selection state of the Grid in memory
|
|
12
|
-
* ([see example](
|
|
12
|
+
* ([see example](slug:grid_selection_persistence)).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html
|
|
@@ -19183,17 +19183,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
19183
19183
|
}], ctorParameters: () => [{ type: DomEventsService }, { type: CellSelectionAggregateService }, { type: LocalDataChangesService }, { type: NavigationService }] });
|
|
19184
19184
|
|
|
19185
19185
|
/**
|
|
19186
|
-
* Adds a select-all checkbox to the Grid.
|
|
19186
|
+
* Adds a select-all checkbox to the Grid. [See example](slug:grid_selection_persistence#selecting-all-rows).
|
|
19187
19187
|
*
|
|
19188
19188
|
* @example
|
|
19189
19189
|
* ```html
|
|
19190
|
-
* <
|
|
19191
|
-
*
|
|
19192
|
-
*
|
|
19193
|
-
*
|
|
19194
|
-
*
|
|
19195
|
-
* (selectAllChange)="onSelectAllChange($event)"
|
|
19196
|
-
* />
|
|
19190
|
+
* <kendo-checkbox
|
|
19191
|
+
* kendoGridSelectAllCheckbox
|
|
19192
|
+
* [state]="selectAllState"
|
|
19193
|
+
* (selectAllChange)="onSelectAllChange($event)"
|
|
19194
|
+
* ></kendo-checkbox>
|
|
19197
19195
|
* ```
|
|
19198
19196
|
*/
|
|
19199
19197
|
class SelectAllCheckboxDirective {
|
|
@@ -23602,8 +23600,8 @@ const packageMetadata = {
|
|
|
23602
23600
|
productName: 'Kendo UI for Angular',
|
|
23603
23601
|
productCode: 'KENDOUIANGULAR',
|
|
23604
23602
|
productCodes: ['KENDOUIANGULAR'],
|
|
23605
|
-
publishDate:
|
|
23606
|
-
version: '21.4.0-develop.
|
|
23603
|
+
publishDate: 1767861286,
|
|
23604
|
+
version: '21.4.0-develop.14',
|
|
23607
23605
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
23608
23606
|
};
|
|
23609
23607
|
|
|
@@ -24886,7 +24884,7 @@ class Selection {
|
|
|
24886
24884
|
rangeSelectionStartColumnIndex = 0;
|
|
24887
24885
|
/**
|
|
24888
24886
|
* Sets the item key to store in `selectedKeys`.
|
|
24889
|
-
* [See example](slug:grid_selection_persistence#
|
|
24887
|
+
* [See example](slug:grid_selection_persistence#using-data-item-field).
|
|
24890
24888
|
*/
|
|
24891
24889
|
selectionKey;
|
|
24892
24890
|
/**
|
|
@@ -36125,7 +36123,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
36125
36123
|
|
|
36126
36124
|
/**
|
|
36127
36125
|
* Stores the row selection state of the Grid in memory
|
|
36128
|
-
* ([see example](
|
|
36126
|
+
* ([see example](slug:grid_selection_persistence)).
|
|
36129
36127
|
*
|
|
36130
36128
|
* @example
|
|
36131
36129
|
* ```html
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "21.4.0-develop.
|
|
3
|
+
"version": "21.4.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",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"package": {
|
|
74
74
|
"productName": "Kendo UI for Angular",
|
|
75
75
|
"productCode": "KENDOUIANGULAR",
|
|
76
|
-
"publishDate":
|
|
76
|
+
"publishDate": 1767861286,
|
|
77
77
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
78
78
|
}
|
|
79
79
|
},
|
|
@@ -86,32 +86,32 @@
|
|
|
86
86
|
"@progress/kendo-data-query": "^1.0.0",
|
|
87
87
|
"@progress/kendo-drawing": "^1.23.1",
|
|
88
88
|
"@progress/kendo-licensing": "^1.7.0",
|
|
89
|
-
"@progress/kendo-angular-buttons": "21.4.0-develop.
|
|
90
|
-
"@progress/kendo-angular-common": "21.4.0-develop.
|
|
91
|
-
"@progress/kendo-angular-dateinputs": "21.4.0-develop.
|
|
92
|
-
"@progress/kendo-angular-layout": "21.4.0-develop.
|
|
93
|
-
"@progress/kendo-angular-navigation": "21.4.0-develop.
|
|
94
|
-
"@progress/kendo-angular-dropdowns": "21.4.0-develop.
|
|
95
|
-
"@progress/kendo-angular-excel-export": "21.4.0-develop.
|
|
96
|
-
"@progress/kendo-angular-icons": "21.4.0-develop.
|
|
97
|
-
"@progress/kendo-angular-indicators": "21.4.0-develop.
|
|
98
|
-
"@progress/kendo-angular-inputs": "21.4.0-develop.
|
|
99
|
-
"@progress/kendo-angular-conversational-ui": "21.4.0-develop.
|
|
100
|
-
"@progress/kendo-angular-intl": "21.4.0-develop.
|
|
101
|
-
"@progress/kendo-angular-l10n": "21.4.0-develop.
|
|
102
|
-
"@progress/kendo-angular-label": "21.4.0-develop.
|
|
103
|
-
"@progress/kendo-angular-menu": "21.4.0-develop.
|
|
104
|
-
"@progress/kendo-angular-pager": "21.4.0-develop.
|
|
105
|
-
"@progress/kendo-angular-pdf-export": "21.4.0-develop.
|
|
106
|
-
"@progress/kendo-angular-popup": "21.4.0-develop.
|
|
107
|
-
"@progress/kendo-angular-toolbar": "21.4.0-develop.
|
|
108
|
-
"@progress/kendo-angular-upload": "21.4.0-develop.
|
|
109
|
-
"@progress/kendo-angular-utils": "21.4.0-develop.
|
|
89
|
+
"@progress/kendo-angular-buttons": "21.4.0-develop.14",
|
|
90
|
+
"@progress/kendo-angular-common": "21.4.0-develop.14",
|
|
91
|
+
"@progress/kendo-angular-dateinputs": "21.4.0-develop.14",
|
|
92
|
+
"@progress/kendo-angular-layout": "21.4.0-develop.14",
|
|
93
|
+
"@progress/kendo-angular-navigation": "21.4.0-develop.14",
|
|
94
|
+
"@progress/kendo-angular-dropdowns": "21.4.0-develop.14",
|
|
95
|
+
"@progress/kendo-angular-excel-export": "21.4.0-develop.14",
|
|
96
|
+
"@progress/kendo-angular-icons": "21.4.0-develop.14",
|
|
97
|
+
"@progress/kendo-angular-indicators": "21.4.0-develop.14",
|
|
98
|
+
"@progress/kendo-angular-inputs": "21.4.0-develop.14",
|
|
99
|
+
"@progress/kendo-angular-conversational-ui": "21.4.0-develop.14",
|
|
100
|
+
"@progress/kendo-angular-intl": "21.4.0-develop.14",
|
|
101
|
+
"@progress/kendo-angular-l10n": "21.4.0-develop.14",
|
|
102
|
+
"@progress/kendo-angular-label": "21.4.0-develop.14",
|
|
103
|
+
"@progress/kendo-angular-menu": "21.4.0-develop.14",
|
|
104
|
+
"@progress/kendo-angular-pager": "21.4.0-develop.14",
|
|
105
|
+
"@progress/kendo-angular-pdf-export": "21.4.0-develop.14",
|
|
106
|
+
"@progress/kendo-angular-popup": "21.4.0-develop.14",
|
|
107
|
+
"@progress/kendo-angular-toolbar": "21.4.0-develop.14",
|
|
108
|
+
"@progress/kendo-angular-upload": "21.4.0-develop.14",
|
|
109
|
+
"@progress/kendo-angular-utils": "21.4.0-develop.14",
|
|
110
110
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
111
111
|
},
|
|
112
112
|
"dependencies": {
|
|
113
113
|
"tslib": "^2.3.1",
|
|
114
|
-
"@progress/kendo-angular-schematics": "21.4.0-develop.
|
|
114
|
+
"@progress/kendo-angular-schematics": "21.4.0-develop.14",
|
|
115
115
|
"@progress/kendo-common": "^1.0.1",
|
|
116
116
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
117
117
|
},
|
|
@@ -9,19 +9,19 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
|
|
11
11
|
// peer deps of the dropdowns
|
|
12
|
-
'@progress/kendo-angular-treeview': '21.4.0-develop.
|
|
13
|
-
'@progress/kendo-angular-navigation': '21.4.0-develop.
|
|
12
|
+
'@progress/kendo-angular-treeview': '21.4.0-develop.14',
|
|
13
|
+
'@progress/kendo-angular-navigation': '21.4.0-develop.14',
|
|
14
14
|
// peer dependency of kendo-angular-inputs
|
|
15
|
-
'@progress/kendo-angular-dialog': '21.4.0-develop.
|
|
15
|
+
'@progress/kendo-angular-dialog': '21.4.0-develop.14',
|
|
16
16
|
// peer dependency of kendo-angular-icons
|
|
17
17
|
'@progress/kendo-svg-icons': '^4.0.0',
|
|
18
18
|
// peer dependency of kendo-angular-layout
|
|
19
|
-
'@progress/kendo-angular-progressbar': '21.4.0-develop.
|
|
19
|
+
'@progress/kendo-angular-progressbar': '21.4.0-develop.14',
|
|
20
20
|
// transitive peer dependencies from toolbar
|
|
21
|
-
'@progress/kendo-angular-indicators': '21.4.0-develop.
|
|
21
|
+
'@progress/kendo-angular-indicators': '21.4.0-develop.14',
|
|
22
22
|
// transitive peer dependencies from conversational-ui
|
|
23
|
-
'@progress/kendo-angular-menu': '21.4.0-develop.
|
|
24
|
-
'@progress/kendo-angular-upload': '21.4.0-develop.
|
|
23
|
+
'@progress/kendo-angular-menu': '21.4.0-develop.14',
|
|
24
|
+
'@progress/kendo-angular-upload': '21.4.0-develop.14'
|
|
25
25
|
} });
|
|
26
26
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
27
27
|
}
|
|
@@ -9,17 +9,15 @@ import { CellSelectionService } from './cell-selection.service';
|
|
|
9
9
|
import { CheckBoxComponent } from '@progress/kendo-angular-inputs';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
/**
|
|
12
|
-
* Adds a select-all checkbox to the Grid.
|
|
12
|
+
* Adds a select-all checkbox to the Grid. [See example](slug:grid_selection_persistence#selecting-all-rows).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html
|
|
16
|
-
* <
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
* (selectAllChange)="onSelectAllChange($event)"
|
|
22
|
-
* />
|
|
16
|
+
* <kendo-checkbox
|
|
17
|
+
* kendoGridSelectAllCheckbox
|
|
18
|
+
* [state]="selectAllState"
|
|
19
|
+
* (selectAllChange)="onSelectAllChange($event)"
|
|
20
|
+
* ></kendo-checkbox>
|
|
23
21
|
* ```
|
|
24
22
|
*/
|
|
25
23
|
export declare class SelectAllCheckboxDirective implements AfterContentChecked, OnDestroy, OnChanges {
|
|
@@ -35,7 +35,7 @@ export declare class Selection {
|
|
|
35
35
|
rangeSelectionStartColumnIndex: number;
|
|
36
36
|
/**
|
|
37
37
|
* Sets the item key to store in `selectedKeys`.
|
|
38
|
-
* [See example](slug:grid_selection_persistence#
|
|
38
|
+
* [See example](slug:grid_selection_persistence#using-data-item-field).
|
|
39
39
|
*/
|
|
40
40
|
selectionKey: string | ((context: RowArgs) => any);
|
|
41
41
|
/**
|
|
@@ -8,7 +8,7 @@ import { Selection } from "./selection-default";
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
/**
|
|
10
10
|
* Stores the row selection state of the Grid in memory
|
|
11
|
-
* ([see example](
|
|
11
|
+
* ([see example](slug:grid_selection_persistence)).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```html
|