@progress/kendo-angular-pivotgrid 18.0.0-develop.9 → 18.0.1-develop.1
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/index.mjs
CHANGED
|
@@ -25,4 +25,4 @@ export { ValueCellTemplateDirective } from './rendering/templates/pivotgrid-valu
|
|
|
25
25
|
export { RowHeaderCellTemplateDirective } from './rendering/templates/pivotgrid-row-header-cell-template.directive';
|
|
26
26
|
export { ColumnHeaderCellTemplateDirective } from './rendering/templates/pivotgrid-column-header-cell-template.directive';
|
|
27
27
|
// Export types from PivotGrid common package
|
|
28
|
-
export { sumAggregate, averageAggregate, minAggregate, maxAggregate, countAggregate } from '@progress/kendo-pivotgrid-common';
|
|
28
|
+
export { sumAggregate, averageAggregate, minAggregate, maxAggregate, countAggregate, AggregateType, createAggregate } from '@progress/kendo-pivotgrid-common';
|
|
@@ -8,8 +8,9 @@
|
|
|
8
8
|
export const packageMetadata = {
|
|
9
9
|
name: '@progress/kendo-angular-pivotgrid',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
productCode: 'KENDOUIANGULAR',
|
|
12
|
+
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
+
publishDate: 1737625007,
|
|
14
|
+
version: '18.0.1-develop.1',
|
|
14
15
|
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'
|
|
15
16
|
};
|
|
@@ -70,7 +70,7 @@ export class ScrollableTable {
|
|
|
70
70
|
this.element.addEventListener('scroll', this.scrollHandler);
|
|
71
71
|
this.element.addEventListener('scrollend', this.scrollEndHandler);
|
|
72
72
|
}
|
|
73
|
-
scrollHandler = (
|
|
73
|
+
scrollHandler = () => {
|
|
74
74
|
const verticalDir = this.element.scrollTop - this.lastKnownScrollPosition.top;
|
|
75
75
|
const horizontalDir = Math.abs(this.element.scrollLeft) - this.lastKnownScrollPosition.left;
|
|
76
76
|
if (this.options.rowVirtualization) {
|
|
@@ -11,7 +11,7 @@ import { Keys, isDocumentAvailable, PreventableEvent, DraggableDirective, hasObs
|
|
|
11
11
|
import { Subscription, BehaviorSubject, Subject, from, of, fromEvent } from 'rxjs';
|
|
12
12
|
import { take, tap, mergeMap, merge } from 'rxjs/operators';
|
|
13
13
|
import { toTree, toRows, toColumns, toData, configuratorReducer, PIVOT_CONFIGURATOR_ACTION, HEADERS_ACTION, headersReducer, createFlatSchemaDimensions, createDataTree, createLocalDataState, rootFields, fetchData, createDataState, fetchDiscover, addKPI, buildKPIMeasures, PivotGridNavigation, ConfiguratorNavigation } from '@progress/kendo-pivotgrid-common';
|
|
14
|
-
export { averageAggregate, countAggregate, maxAggregate, minAggregate, sumAggregate } from '@progress/kendo-pivotgrid-common';
|
|
14
|
+
export { AggregateType, averageAggregate, countAggregate, createAggregate, maxAggregate, minAggregate, sumAggregate } from '@progress/kendo-pivotgrid-common';
|
|
15
15
|
import { filterIcon, columnsIcon, rowsIcon, arrowLeftIcon, arrowRightIcon, sortAscSmallIcon, sortDescSmallIcon, moreVerticalIcon, chevronUpIcon, chevronDownIcon, gearIcon } from '@progress/kendo-svg-icons';
|
|
16
16
|
import * as i1$1 from '@progress/kendo-angular-l10n';
|
|
17
17
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
@@ -3793,9 +3793,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3793
3793
|
const packageMetadata = {
|
|
3794
3794
|
name: '@progress/kendo-angular-pivotgrid',
|
|
3795
3795
|
productName: 'Kendo UI for Angular',
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3796
|
+
productCode: 'KENDOUIANGULAR',
|
|
3797
|
+
productCodes: ['KENDOUIANGULAR'],
|
|
3798
|
+
publishDate: 1737625007,
|
|
3799
|
+
version: '18.0.1-develop.1',
|
|
3799
3800
|
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'
|
|
3800
3801
|
};
|
|
3801
3802
|
|
|
@@ -4018,7 +4019,7 @@ class ScrollableTable {
|
|
|
4018
4019
|
this.element.addEventListener('scroll', this.scrollHandler);
|
|
4019
4020
|
this.element.addEventListener('scrollend', this.scrollEndHandler);
|
|
4020
4021
|
}
|
|
4021
|
-
scrollHandler = (
|
|
4022
|
+
scrollHandler = () => {
|
|
4022
4023
|
const verticalDir = this.element.scrollTop - this.lastKnownScrollPosition.top;
|
|
4023
4024
|
const horizontalDir = Math.abs(this.element.scrollLeft) - this.lastKnownScrollPosition.left;
|
|
4024
4025
|
if (this.options.rowVirtualization) {
|
package/index.d.ts
CHANGED
|
@@ -25,4 +25,4 @@ export { CellTemplateDirective } from './rendering/templates/pivotgrid-cell-temp
|
|
|
25
25
|
export { ValueCellTemplateDirective } from './rendering/templates/pivotgrid-value-cell-template.directive';
|
|
26
26
|
export { RowHeaderCellTemplateDirective } from './rendering/templates/pivotgrid-row-header-cell-template.directive';
|
|
27
27
|
export { ColumnHeaderCellTemplateDirective } from './rendering/templates/pivotgrid-column-header-cell-template.directive';
|
|
28
|
-
export { PivotGridAxis, PivotGridField, AxisDataItem, DimensionField, HierarchyField, KPIField, KPIMeasureField, LevelField, MeasureField, MemberField, PivotDataItem, sumAggregate, averageAggregate, minAggregate, maxAggregate, countAggregate, Aggregate, Dimension, Measure } from '@progress/kendo-pivotgrid-common';
|
|
28
|
+
export { PivotGridAxis, PivotGridField, AxisDataItem, DimensionField, HierarchyField, KPIField, KPIMeasureField, LevelField, MeasureField, MemberField, PivotDataItem, sumAggregate, averageAggregate, minAggregate, maxAggregate, countAggregate, Aggregate, Dimension, Measure, AggregateType, createAggregate } from '@progress/kendo-pivotgrid-common';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-pivotgrid",
|
|
3
|
-
"version": "18.0.
|
|
3
|
+
"version": "18.0.1-develop.1",
|
|
4
4
|
"description": "PivotGrid package for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -14,7 +14,13 @@
|
|
|
14
14
|
"Kendo UI"
|
|
15
15
|
],
|
|
16
16
|
"@progress": {
|
|
17
|
-
"friendlyName": "PivotGrid"
|
|
17
|
+
"friendlyName": "PivotGrid",
|
|
18
|
+
"package": {
|
|
19
|
+
"productName": "Kendo UI for Angular",
|
|
20
|
+
"productCode": "KENDOUIANGULAR",
|
|
21
|
+
"publishDate": 1737625007,
|
|
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
|
+
}
|
|
18
24
|
},
|
|
19
25
|
"peerDependencies": {
|
|
20
26
|
"@angular/animations": "16 - 19",
|
|
@@ -25,22 +31,22 @@
|
|
|
25
31
|
"@progress/kendo-data-query": "^1.5.5",
|
|
26
32
|
"@progress/kendo-drawing": "^1.21.0",
|
|
27
33
|
"@progress/kendo-licensing": "^1.0.2",
|
|
28
|
-
"@progress/kendo-angular-buttons": "18.0.
|
|
29
|
-
"@progress/kendo-angular-common": "18.0.
|
|
30
|
-
"@progress/kendo-angular-dropdowns": "18.0.
|
|
31
|
-
"@progress/kendo-angular-indicators": "18.0.
|
|
32
|
-
"@progress/kendo-angular-inputs": "18.0.
|
|
33
|
-
"@progress/kendo-angular-intl": "18.0.
|
|
34
|
-
"@progress/kendo-angular-l10n": "18.0.
|
|
35
|
-
"@progress/kendo-angular-popup": "18.0.
|
|
36
|
-
"@progress/kendo-angular-icons": "18.0.
|
|
37
|
-
"@progress/kendo-angular-treeview": "18.0.
|
|
34
|
+
"@progress/kendo-angular-buttons": "18.0.1-develop.1",
|
|
35
|
+
"@progress/kendo-angular-common": "18.0.1-develop.1",
|
|
36
|
+
"@progress/kendo-angular-dropdowns": "18.0.1-develop.1",
|
|
37
|
+
"@progress/kendo-angular-indicators": "18.0.1-develop.1",
|
|
38
|
+
"@progress/kendo-angular-inputs": "18.0.1-develop.1",
|
|
39
|
+
"@progress/kendo-angular-intl": "18.0.1-develop.1",
|
|
40
|
+
"@progress/kendo-angular-l10n": "18.0.1-develop.1",
|
|
41
|
+
"@progress/kendo-angular-popup": "18.0.1-develop.1",
|
|
42
|
+
"@progress/kendo-angular-icons": "18.0.1-develop.1",
|
|
43
|
+
"@progress/kendo-angular-treeview": "18.0.1-develop.1",
|
|
38
44
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
39
45
|
},
|
|
40
46
|
"dependencies": {
|
|
41
47
|
"tslib": "^2.3.1",
|
|
42
|
-
"@progress/kendo-angular-schematics": "18.0.
|
|
43
|
-
"@progress/kendo-pivotgrid-common": "0.6.
|
|
48
|
+
"@progress/kendo-angular-schematics": "18.0.1-develop.1",
|
|
49
|
+
"@progress/kendo-pivotgrid-common": "0.6.2"
|
|
44
50
|
},
|
|
45
51
|
"schematics": "./schematics/collection.json",
|
|
46
52
|
"module": "fesm2022/progress-kendo-angular-pivotgrid.mjs",
|
|
@@ -6,11 +6,11 @@ function default_1(options) {
|
|
|
6
6
|
// Additional dependencies to install.
|
|
7
7
|
// See https://github.com/telerik/kendo-schematics/issues/28
|
|
8
8
|
peerDependencies: {
|
|
9
|
-
'@progress/kendo-angular-dialog': '18.0.
|
|
9
|
+
'@progress/kendo-angular-dialog': '18.0.1-develop.1',
|
|
10
10
|
// peer dep of the icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^4.0.0',
|
|
12
12
|
// peer dep of the dropdowns
|
|
13
|
-
'@progress/kendo-angular-navigation': '18.0.
|
|
13
|
+
'@progress/kendo-angular-navigation': '18.0.1-develop.1'
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|