@progress/kendo-angular-pivotgrid 24.2.2-develop.1 → 24.2.2-develop.10
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.
|
@@ -1776,13 +1776,16 @@ class ChipMenuComponent {
|
|
|
1776
1776
|
this.popupRef = this.popupService.open(anchorElement, this.template, this.popupRef, POPUP_CLASS);
|
|
1777
1777
|
this.popupRef && this.renderer.setAttribute(this.popupRef.popupElement, 'dir', this.localization.rtl ? 'rtl' : 'ltr');
|
|
1778
1778
|
if (!this.popupRef) {
|
|
1779
|
-
anchorElement.focus();
|
|
1779
|
+
anchorElement.focus({ preventScroll: true });
|
|
1780
1780
|
}
|
|
1781
1781
|
}
|
|
1782
1782
|
close() {
|
|
1783
|
+
if (!this.popupRef) {
|
|
1784
|
+
return;
|
|
1785
|
+
}
|
|
1783
1786
|
this.popupService.destroy();
|
|
1784
1787
|
this.popupRef = null;
|
|
1785
|
-
this.anchor.element.nativeElement.closest('.k-chip').focus();
|
|
1788
|
+
this.anchor.element.nativeElement.closest('.k-chip').focus({ preventScroll: true });
|
|
1786
1789
|
}
|
|
1787
1790
|
get chipMenuTitle() {
|
|
1788
1791
|
const localizationMsg = this.localization.get('chipMenuIconTitle') || '';
|
|
@@ -3167,7 +3170,6 @@ class PivotBaseBindingDirective {
|
|
|
3167
3170
|
}
|
|
3168
3171
|
this.dataService.configuredFields.next(this.dataService.state);
|
|
3169
3172
|
this.loadData(state);
|
|
3170
|
-
this.dataService.state = state;
|
|
3171
3173
|
this.rowAxes = this.dataService.state.rowAxes;
|
|
3172
3174
|
this.columnAxes = this.dataService.state.columnAxes;
|
|
3173
3175
|
});
|
|
@@ -3868,8 +3870,8 @@ const packageMetadata = {
|
|
|
3868
3870
|
productName: 'Kendo UI for Angular',
|
|
3869
3871
|
productCode: 'KENDOUIANGULAR',
|
|
3870
3872
|
productCodes: ['KENDOUIANGULAR'],
|
|
3871
|
-
publishDate:
|
|
3872
|
-
version: '24.2.2-develop.
|
|
3873
|
+
publishDate: 1783423512,
|
|
3874
|
+
version: '24.2.2-develop.10',
|
|
3873
3875
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
3874
3876
|
};
|
|
3875
3877
|
|
|
@@ -4175,7 +4177,7 @@ class PivotGridCellDirective {
|
|
|
4175
4177
|
|| (this.tableType === 'columnHeader' && !this.columnHeaderCellTemplate);
|
|
4176
4178
|
}
|
|
4177
4179
|
get expanded() {
|
|
4178
|
-
return (this.kendoPivotGridCell?.hasChildren && this.kendoPivotGridCell
|
|
4180
|
+
return (this.kendoPivotGridCell?.hasChildren && this.kendoPivotGridCell?.children?.length > 0) || false;
|
|
4179
4181
|
}
|
|
4180
4182
|
chevronUpSVGIcon = chevronUpIcon;
|
|
4181
4183
|
chevronDownSVGIcon = chevronDownIcon;
|
|
@@ -4186,8 +4188,8 @@ class PivotGridCellDirective {
|
|
|
4186
4188
|
}
|
|
4187
4189
|
ngOnInit() {
|
|
4188
4190
|
const nativeElement = this.hostEl.nativeElement;
|
|
4189
|
-
this.renderer.setAttribute(nativeElement, 'rowspan', this.kendoPivotGridCell
|
|
4190
|
-
this.renderer.setAttribute(nativeElement, 'colspan', this.kendoPivotGridCell
|
|
4191
|
+
this.renderer.setAttribute(nativeElement, 'rowspan', this.kendoPivotGridCell?.rowSpan || 1);
|
|
4192
|
+
this.renderer.setAttribute(nativeElement, 'colspan', this.kendoPivotGridCell?.colSpan || 1);
|
|
4191
4193
|
const classesToAdd = {
|
|
4192
4194
|
'k-pivotgrid-header-total': this.kendoPivotGridCell?.total,
|
|
4193
4195
|
'k-pivotgrid-total': this.tableType === 'values'
|
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.2.2-develop.
|
|
10
|
+
"publishDate": 1783423512,
|
|
11
|
+
"version": "24.2.2-develop.10",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-pivotgrid",
|
|
3
|
-
"version": "24.2.2-develop.
|
|
3
|
+
"version": "24.2.2-develop.10",
|
|
4
4
|
"description": "PivotGrid package for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"package": {
|
|
19
19
|
"productName": "Kendo UI for Angular",
|
|
20
20
|
"productCode": "KENDOUIANGULAR",
|
|
21
|
-
"publishDate":
|
|
21
|
+
"publishDate": 1783423512,
|
|
22
22
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
|
|
23
23
|
}
|
|
24
24
|
},
|
|
@@ -31,21 +31,21 @@
|
|
|
31
31
|
"@progress/kendo-data-query": "^1.7.3",
|
|
32
32
|
"@progress/kendo-drawing": "^1.25.0",
|
|
33
33
|
"@progress/kendo-licensing": "^1.11.0",
|
|
34
|
-
"@progress/kendo-angular-buttons": "24.2.2-develop.
|
|
35
|
-
"@progress/kendo-angular-common": "24.2.2-develop.
|
|
36
|
-
"@progress/kendo-angular-dropdowns": "24.2.2-develop.
|
|
37
|
-
"@progress/kendo-angular-indicators": "24.2.2-develop.
|
|
38
|
-
"@progress/kendo-angular-inputs": "24.2.2-develop.
|
|
39
|
-
"@progress/kendo-angular-intl": "24.2.2-develop.
|
|
40
|
-
"@progress/kendo-angular-l10n": "24.2.2-develop.
|
|
41
|
-
"@progress/kendo-angular-popup": "24.2.2-develop.
|
|
42
|
-
"@progress/kendo-angular-icons": "24.2.2-develop.
|
|
43
|
-
"@progress/kendo-angular-treeview": "24.2.2-develop.
|
|
34
|
+
"@progress/kendo-angular-buttons": "24.2.2-develop.10",
|
|
35
|
+
"@progress/kendo-angular-common": "24.2.2-develop.10",
|
|
36
|
+
"@progress/kendo-angular-dropdowns": "24.2.2-develop.10",
|
|
37
|
+
"@progress/kendo-angular-indicators": "24.2.2-develop.10",
|
|
38
|
+
"@progress/kendo-angular-inputs": "24.2.2-develop.10",
|
|
39
|
+
"@progress/kendo-angular-intl": "24.2.2-develop.10",
|
|
40
|
+
"@progress/kendo-angular-l10n": "24.2.2-develop.10",
|
|
41
|
+
"@progress/kendo-angular-popup": "24.2.2-develop.10",
|
|
42
|
+
"@progress/kendo-angular-icons": "24.2.2-develop.10",
|
|
43
|
+
"@progress/kendo-angular-treeview": "24.2.2-develop.10",
|
|
44
44
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"tslib": "^2.3.1",
|
|
48
|
-
"@progress/kendo-angular-schematics": "24.2.2-develop.
|
|
48
|
+
"@progress/kendo-angular-schematics": "24.2.2-develop.10",
|
|
49
49
|
"@progress/kendo-pivotgrid-common": "0.6.3"
|
|
50
50
|
},
|
|
51
51
|
"schematics": "./schematics/collection.json",
|
|
@@ -11,11 +11,11 @@ function default_1(options) {
|
|
|
11
11
|
// Additional dependencies to install.
|
|
12
12
|
// See https://github.com/telerik/kendo-schematics/issues/28
|
|
13
13
|
peerDependencies: {
|
|
14
|
-
'@progress/kendo-angular-dialog': '24.2.2-develop.
|
|
14
|
+
'@progress/kendo-angular-dialog': '24.2.2-develop.10',
|
|
15
15
|
// peer dep of the icons
|
|
16
16
|
'@progress/kendo-svg-icons': '^4.0.0',
|
|
17
17
|
// peer dep of the dropdowns
|
|
18
|
-
'@progress/kendo-angular-navigation': '24.2.2-develop.
|
|
18
|
+
'@progress/kendo-angular-navigation': '24.2.2-develop.10'
|
|
19
19
|
} });
|
|
20
20
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
21
21
|
}
|