@progress/kendo-angular-grid 24.0.2 → 24.0.3-develop.2
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.
|
@@ -3603,9 +3603,11 @@ class NavigationService {
|
|
|
3603
3603
|
}
|
|
3604
3604
|
get activeRow() {
|
|
3605
3605
|
if (this.mode !== 0 /* NavigationMode.Standby */) {
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3606
|
+
const row = this.cursor.row;
|
|
3607
|
+
if (!row) {
|
|
3608
|
+
return undefined;
|
|
3609
|
+
}
|
|
3610
|
+
return { ...row, cells: row.cells?.toArray() };
|
|
3609
3611
|
}
|
|
3610
3612
|
}
|
|
3611
3613
|
get isColumnResizable() {
|
|
@@ -4038,8 +4040,8 @@ class NavigationService {
|
|
|
4038
4040
|
this.focusRoot.deactivate();
|
|
4039
4041
|
}
|
|
4040
4042
|
activateRow() {
|
|
4041
|
-
this.cursor.row
|
|
4042
|
-
|
|
4043
|
+
this.cursor.row?.cells
|
|
4044
|
+
?.forEach(cell => cell.focusGroup?.activate());
|
|
4043
4045
|
}
|
|
4044
4046
|
moveCursorFwd() {
|
|
4045
4047
|
this.lastCellRowIndex = this.activeCell?.rowIndex;
|
|
@@ -19448,6 +19450,8 @@ class SelectionService {
|
|
|
19448
19450
|
ev.cellAggregates = this.aggregateService.onSelectionChange(ev);
|
|
19449
19451
|
}
|
|
19450
19452
|
this.syncCurrentSelection(ev);
|
|
19453
|
+
const nonSelectableState = this.hasNonSelectable ? undefined : true;
|
|
19454
|
+
this._selectAllState = selectAllChecked ? nonSelectableState : false;
|
|
19451
19455
|
this.changes.emit(ev);
|
|
19452
19456
|
}
|
|
19453
19457
|
selectRange(startIndex, endIndex, preserveSelection, existingSelections = []) {
|
|
@@ -20004,11 +20008,12 @@ class SelectAllCheckboxDirective {
|
|
|
20004
20008
|
* @hidden
|
|
20005
20009
|
*/
|
|
20006
20010
|
onClick() {
|
|
20007
|
-
const
|
|
20008
|
-
const
|
|
20009
|
-
const
|
|
20010
|
-
const checkboxState =
|
|
20011
|
-
|
|
20011
|
+
const selectAllState = this.selectionService.selectAllState;
|
|
20012
|
+
const isChecked = selectAllState === false;
|
|
20013
|
+
const nonSelectableChecked = this.selectionService.hasNonSelectable ? 'indeterminate' : 'checked';
|
|
20014
|
+
const checkboxState = isChecked
|
|
20015
|
+
? nonSelectableChecked
|
|
20016
|
+
: 'unchecked';
|
|
20012
20017
|
const options = this.selectionService.options;
|
|
20013
20018
|
const enabledAndMultiple = options.enabled && options.mode === 'multiple' && !this.cellSelectionService.active;
|
|
20014
20019
|
const shouldEmitSelectAll = hasObservers(this.selectAllChange);
|
|
@@ -24795,8 +24800,8 @@ const packageMetadata = {
|
|
|
24795
24800
|
productName: 'Kendo UI for Angular',
|
|
24796
24801
|
productCode: 'KENDOUIANGULAR',
|
|
24797
24802
|
productCodes: ['KENDOUIANGULAR'],
|
|
24798
|
-
publishDate:
|
|
24799
|
-
version: '24.0.2',
|
|
24803
|
+
publishDate: 1779982712,
|
|
24804
|
+
version: '24.0.3-develop.2',
|
|
24800
24805
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
24801
24806
|
};
|
|
24802
24807
|
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "24.0.2",
|
|
10
|
+
"publishDate": 1779982712,
|
|
11
|
+
"version": "24.0.3-develop.2",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "24.0.2",
|
|
3
|
+
"version": "24.0.3-develop.2",
|
|
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",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"package": {
|
|
95
95
|
"productName": "Kendo UI for Angular",
|
|
96
96
|
"productCode": "KENDOUIANGULAR",
|
|
97
|
-
"publishDate":
|
|
97
|
+
"publishDate": 1779982712,
|
|
98
98
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
99
99
|
}
|
|
100
100
|
},
|
|
@@ -107,32 +107,32 @@
|
|
|
107
107
|
"@progress/kendo-data-query": "^1.7.3",
|
|
108
108
|
"@progress/kendo-drawing": "^1.25.0",
|
|
109
109
|
"@progress/kendo-licensing": "^1.11.0",
|
|
110
|
-
"@progress/kendo-angular-buttons": "24.0.2",
|
|
111
|
-
"@progress/kendo-angular-common": "24.0.2",
|
|
112
|
-
"@progress/kendo-angular-dateinputs": "24.0.2",
|
|
113
|
-
"@progress/kendo-angular-layout": "24.0.2",
|
|
114
|
-
"@progress/kendo-angular-navigation": "24.0.2",
|
|
115
|
-
"@progress/kendo-angular-dropdowns": "24.0.2",
|
|
116
|
-
"@progress/kendo-angular-excel-export": "24.0.2",
|
|
117
|
-
"@progress/kendo-angular-icons": "24.0.2",
|
|
118
|
-
"@progress/kendo-angular-indicators": "24.0.2",
|
|
119
|
-
"@progress/kendo-angular-inputs": "24.0.2",
|
|
120
|
-
"@progress/kendo-angular-conversational-ui": "24.0.2",
|
|
121
|
-
"@progress/kendo-angular-intl": "24.0.2",
|
|
122
|
-
"@progress/kendo-angular-l10n": "24.0.2",
|
|
123
|
-
"@progress/kendo-angular-label": "24.0.2",
|
|
124
|
-
"@progress/kendo-angular-menu": "24.0.2",
|
|
125
|
-
"@progress/kendo-angular-pager": "24.0.2",
|
|
126
|
-
"@progress/kendo-angular-pdf-export": "24.0.2",
|
|
127
|
-
"@progress/kendo-angular-popup": "24.0.2",
|
|
128
|
-
"@progress/kendo-angular-toolbar": "24.0.2",
|
|
129
|
-
"@progress/kendo-angular-upload": "24.0.2",
|
|
130
|
-
"@progress/kendo-angular-utils": "24.0.2",
|
|
110
|
+
"@progress/kendo-angular-buttons": "24.0.3-develop.2",
|
|
111
|
+
"@progress/kendo-angular-common": "24.0.3-develop.2",
|
|
112
|
+
"@progress/kendo-angular-dateinputs": "24.0.3-develop.2",
|
|
113
|
+
"@progress/kendo-angular-layout": "24.0.3-develop.2",
|
|
114
|
+
"@progress/kendo-angular-navigation": "24.0.3-develop.2",
|
|
115
|
+
"@progress/kendo-angular-dropdowns": "24.0.3-develop.2",
|
|
116
|
+
"@progress/kendo-angular-excel-export": "24.0.3-develop.2",
|
|
117
|
+
"@progress/kendo-angular-icons": "24.0.3-develop.2",
|
|
118
|
+
"@progress/kendo-angular-indicators": "24.0.3-develop.2",
|
|
119
|
+
"@progress/kendo-angular-inputs": "24.0.3-develop.2",
|
|
120
|
+
"@progress/kendo-angular-conversational-ui": "24.0.3-develop.2",
|
|
121
|
+
"@progress/kendo-angular-intl": "24.0.3-develop.2",
|
|
122
|
+
"@progress/kendo-angular-l10n": "24.0.3-develop.2",
|
|
123
|
+
"@progress/kendo-angular-label": "24.0.3-develop.2",
|
|
124
|
+
"@progress/kendo-angular-menu": "24.0.3-develop.2",
|
|
125
|
+
"@progress/kendo-angular-pager": "24.0.3-develop.2",
|
|
126
|
+
"@progress/kendo-angular-pdf-export": "24.0.3-develop.2",
|
|
127
|
+
"@progress/kendo-angular-popup": "24.0.3-develop.2",
|
|
128
|
+
"@progress/kendo-angular-toolbar": "24.0.3-develop.2",
|
|
129
|
+
"@progress/kendo-angular-upload": "24.0.3-develop.2",
|
|
130
|
+
"@progress/kendo-angular-utils": "24.0.3-develop.2",
|
|
131
131
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
132
132
|
},
|
|
133
133
|
"dependencies": {
|
|
134
134
|
"tslib": "^2.3.1",
|
|
135
|
-
"@progress/kendo-angular-schematics": "24.0.2",
|
|
135
|
+
"@progress/kendo-angular-schematics": "24.0.3-develop.2",
|
|
136
136
|
"@progress/kendo-common": "^1.0.1",
|
|
137
137
|
"@progress/kendo-file-saver": "^1.0.0",
|
|
138
138
|
"@progress/kendo-csv": "^1.0.0"
|
|
@@ -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': '24.0.2',
|
|
13
|
-
'@progress/kendo-angular-navigation': '24.0.2',
|
|
12
|
+
'@progress/kendo-angular-treeview': '24.0.3-develop.2',
|
|
13
|
+
'@progress/kendo-angular-navigation': '24.0.3-develop.2',
|
|
14
14
|
// peer dependency of kendo-angular-inputs
|
|
15
|
-
'@progress/kendo-angular-dialog': '24.0.2',
|
|
15
|
+
'@progress/kendo-angular-dialog': '24.0.3-develop.2',
|
|
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': '24.0.2',
|
|
19
|
+
'@progress/kendo-angular-progressbar': '24.0.3-develop.2',
|
|
20
20
|
// transitive peer dependencies from toolbar
|
|
21
|
-
'@progress/kendo-angular-indicators': '24.0.2',
|
|
21
|
+
'@progress/kendo-angular-indicators': '24.0.3-develop.2',
|
|
22
22
|
// transitive peer dependencies from conversational-ui
|
|
23
|
-
'@progress/kendo-angular-menu': '24.0.2',
|
|
24
|
-
'@progress/kendo-angular-upload': '24.0.2'
|
|
23
|
+
'@progress/kendo-angular-menu': '24.0.3-develop.2',
|
|
24
|
+
'@progress/kendo-angular-upload': '24.0.3-develop.2'
|
|
25
25
|
} });
|
|
26
26
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
27
27
|
}
|