@syncfusion/ej2-angular-pivotview 29.2.4 → 29.2.8
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### Pivot Table
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I722574` - The correct index is now returned after editing and selecting the first row data cell in the pivot table.
|
|
10
|
+
- `#I720862` - Performance improvements have been implemented in the pivot field list when adding OLAP fields after a field search.
|
|
11
|
+
- `#I728517` - The `beforeServiceInvoke` event will now be triggered correctly when applying changes through the popup field list in the pivot table.
|
|
12
|
+
- `#I720862` - The `ExcelHeaderQueryCellInfo` event will now be triggered appropriately for empty cells in the first column of the pivot table during server-side engine export.
|
|
13
|
+
|
|
5
14
|
## 29.1.40 (2025-04-29)
|
|
6
15
|
|
|
7
16
|
### Pivot Table
|
package/package.json
CHANGED
|
@@ -1,44 +1,30 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"_requested": {
|
|
9
|
-
"type": "range",
|
|
10
|
-
"registry": true,
|
|
11
|
-
"raw": "@syncfusion/ej2-angular-pivotview@*",
|
|
12
|
-
"name": "@syncfusion/ej2-angular-pivotview",
|
|
13
|
-
"escapedName": "@syncfusion%2fej2-angular-pivotview",
|
|
14
|
-
"scope": "@syncfusion",
|
|
15
|
-
"rawSpec": "*",
|
|
16
|
-
"saveSpec": null,
|
|
17
|
-
"fetchSpec": "*"
|
|
18
|
-
},
|
|
19
|
-
"_requiredBy": [
|
|
20
|
-
"/"
|
|
21
|
-
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-angular-hotfix/@syncfusion/ej2-angular-pivotview/-/ej2-angular-pivotview-29.1.40.tgz",
|
|
23
|
-
"_shasum": "e5928bebe21de552f1b332e608f58f451b52c851",
|
|
24
|
-
"_spec": "@syncfusion/ej2-angular-pivotview@*",
|
|
25
|
-
"_where": "/jenkins/workspace/elease-automation_release_29.1.1/ivypackages/included",
|
|
26
|
-
"author": {
|
|
27
|
-
"name": "Syncfusion Inc."
|
|
28
|
-
},
|
|
29
|
-
"bugs": {
|
|
30
|
-
"url": "https://github.com/syncfusion/ej2-angular-ui-components/issues"
|
|
31
|
-
},
|
|
32
|
-
"bundleDependencies": false,
|
|
2
|
+
"name": "@syncfusion/ej2-angular-pivotview",
|
|
3
|
+
"version": "29.2.8",
|
|
4
|
+
"description": "The pivot grid, or pivot table, is used to visualize large sets of relational data in a cross-tabular format, similar to an Excel pivot table. for Angular",
|
|
5
|
+
"author": "Syncfusion Inc.",
|
|
6
|
+
"license": "SEE LICENSE IN license",
|
|
7
|
+
"schematics": "./schematics/collection.json",
|
|
33
8
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~29.2.4",
|
|
35
9
|
"@syncfusion/ej2-base": "~29.2.4",
|
|
36
|
-
"@syncfusion/ej2-
|
|
10
|
+
"@syncfusion/ej2-angular-base": "~29.2.4",
|
|
11
|
+
"@syncfusion/ej2-pivotview": "29.2.8"
|
|
37
12
|
},
|
|
38
|
-
"
|
|
39
|
-
|
|
13
|
+
"keywords": [
|
|
14
|
+
"angular",
|
|
15
|
+
"angular-pivotview"
|
|
16
|
+
],
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/syncfusion/ej2-angular-ui-components.git"
|
|
20
|
+
},
|
|
21
|
+
"sideEffects": false,
|
|
22
|
+
"module": "fesm2015/syncfusion-ej2-angular-pivotview.mjs",
|
|
40
23
|
"es2020": "fesm2020/syncfusion-ej2-angular-pivotview.mjs",
|
|
41
24
|
"esm2020": "esm2020/syncfusion-ej2-angular-pivotview.mjs",
|
|
25
|
+
"fesm2020": "fesm2020/syncfusion-ej2-angular-pivotview.mjs",
|
|
26
|
+
"fesm2015": "fesm2015/syncfusion-ej2-angular-pivotview.mjs",
|
|
27
|
+
"typings": "syncfusion-ej2-angular-pivotview.d.ts",
|
|
42
28
|
"exports": {
|
|
43
29
|
"./package.json": {
|
|
44
30
|
"default": "./package.json"
|
|
@@ -52,22 +38,5 @@
|
|
|
52
38
|
"default": "./fesm2020/syncfusion-ej2-angular-pivotview.mjs"
|
|
53
39
|
}
|
|
54
40
|
},
|
|
55
|
-
"
|
|
56
|
-
"fesm2020": "fesm2020/syncfusion-ej2-angular-pivotview.mjs",
|
|
57
|
-
"homepage": "https://www.syncfusion.com/angular-components",
|
|
58
|
-
"keywords": [
|
|
59
|
-
"angular",
|
|
60
|
-
"angular-pivotview"
|
|
61
|
-
],
|
|
62
|
-
"license": "SEE LICENSE IN license",
|
|
63
|
-
"module": "fesm2015/syncfusion-ej2-angular-pivotview.mjs",
|
|
64
|
-
"name": "@syncfusion/ej2-angular-pivotview",
|
|
65
|
-
"repository": {
|
|
66
|
-
"type": "git",
|
|
67
|
-
"url": "git+https://github.com/syncfusion/ej2-angular-ui-components.git"
|
|
68
|
-
},
|
|
69
|
-
"schematics": "./schematics/collection.json",
|
|
70
|
-
"sideEffects": false,
|
|
71
|
-
"typings": "syncfusion-ej2-angular-pivotview.d.ts",
|
|
72
|
-
"version": "29.2.4"
|
|
41
|
+
"homepage": "https://www.syncfusion.com/angular-components"
|
|
73
42
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-pivotview";
|
|
2
|
-
export declare const pkgVer = "^29.
|
|
2
|
+
export declare const pkgVer = "^29.2.4";
|
|
3
3
|
export declare const moduleName = "PivotViewModule, PivotFieldListModule";
|
|
4
|
-
export declare const themeVer = "~29.
|
|
4
|
+
export declare const themeVer = "~29.2.4";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-pivotview';
|
|
4
|
-
exports.pkgVer = '^29.2.
|
|
4
|
+
exports.pkgVer = '^29.2.8';
|
|
5
5
|
exports.moduleName = 'PivotViewModule, PivotFieldListModule';
|
|
6
|
-
exports.themeVer = '~29.2.
|
|
6
|
+
exports.themeVer = '~29.2.8';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export const pkgName = '@syncfusion/ej2-angular-pivotview';
|
|
2
|
-
export const pkgVer = '^29.2.
|
|
2
|
+
export const pkgVer = '^29.2.8';
|
|
3
3
|
export const moduleName = 'PivotViewModule, PivotFieldListModule';
|
|
4
|
-
export const themeVer = '~29.2.
|
|
4
|
+
export const themeVer = '~29.2.8';
|