@syncfusion/ej2-vue-pivotview 19.3.46 → 19.3.55
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 +42 -5
- package/dist/ej2-vue-pivotview.umd.min.js +1 -1
- package/dist/es6/ej2-vue-pivotview.es2015.js +3 -0
- package/dist/es6/ej2-vue-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-pivotview.es5.js +3 -0
- package/dist/es6/ej2-vue-pivotview.es5.js.map +1 -1
- package/dist/global/ej2-vue-pivotview.min.js +2 -2
- package/package.json +8 -8
- package/src/pivotview/pivotview.component.d.ts +1 -0
- package/src/pivotview/pivotview.component.js +3 -0
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-pivotview@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-pivotview@19.3.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-pivotview@19.3.53",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-nRy/JO11UmCKm9D73t23V/GSK3MnX/IDyhFAoVVqbKa13pcZzM5+Ur4IW1MG9AODcwWS84DPXEpHyFKBAKFJpQ==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-vue-pivotview",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-vue-pivotview/-/ej2-vue-pivotview-19.3.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-vue-pivotview/-/ej2-vue-pivotview-19.3.53.tgz",
|
|
23
|
+
"_shasum": "e8fca488e30124a400978221297f41819f61429b",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-pivotview@*",
|
|
25
25
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~19.3.
|
|
35
|
-
"@syncfusion/ej2-pivotview": "19.3.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~19.3.
|
|
34
|
+
"@syncfusion/ej2-base": "~19.3.54",
|
|
35
|
+
"@syncfusion/ej2-pivotview": "19.3.55",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~19.3.55"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"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 Vue",
|
|
@@ -61,6 +61,6 @@
|
|
|
61
61
|
"type": "git",
|
|
62
62
|
"url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
|
|
63
63
|
},
|
|
64
|
-
"version": "19.3.
|
|
64
|
+
"version": "19.3.55",
|
|
65
65
|
"sideEffects": false
|
|
66
66
|
}
|
|
@@ -33,6 +33,7 @@ export declare class PivotViewComponent extends ComponentBase {
|
|
|
33
33
|
csvExport(excelExportProperties?: Object, isMultipleExport?: boolean, workbook?: any, isBlob?: boolean): void;
|
|
34
34
|
excelExport(excelExportProperties?: Object, isMultipleExport?: boolean, workbook?: any, isBlob?: boolean): void;
|
|
35
35
|
getCellTemplate(): Object;
|
|
36
|
+
getRowText(rowIndex: number, colIndex: number): string;
|
|
36
37
|
loadPersistData(persistData: string): void;
|
|
37
38
|
pdfExport(pdfExportProperties?: Object, isMultipleExport?: boolean, pdfDoc?: Object, isBlob?: boolean): void;
|
|
38
39
|
printChart(): void;
|
|
@@ -128,6 +128,9 @@ var PivotViewComponent = /** @class */ (function (_super) {
|
|
|
128
128
|
PivotViewComponent.prototype.getCellTemplate = function () {
|
|
129
129
|
return this.ej2Instances.getCellTemplate();
|
|
130
130
|
};
|
|
131
|
+
PivotViewComponent.prototype.getRowText = function (rowIndex, colIndex) {
|
|
132
|
+
return this.ej2Instances.getRowText(rowIndex, colIndex);
|
|
133
|
+
};
|
|
131
134
|
PivotViewComponent.prototype.loadPersistData = function (persistData) {
|
|
132
135
|
return this.ej2Instances.loadPersistData(persistData);
|
|
133
136
|
};
|