@syncfusion/ej2-vue-pivotview 24.2.8 → 25.1.35
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 +5 -79
- package/dist/ej2-vue-pivotview.umd.min.js +2 -2
- package/dist/ej2-vue-pivotview.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-pivotview.es2015.js +1 -1
- package/dist/es6/ej2-vue-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-pivotview.es5.js +1 -1
- package/dist/es6/ej2-vue-pivotview.es5.js.map +1 -1
- package/dist/global/ej2-vue-pivotview.min.js +1 -2
- package/package.json +9 -9
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +21 -3
- package/src/pivotview/pivotview.component.d.ts +29 -3
- package/src/pivotview/pivotview.component.js +1 -1
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-pivotview@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-pivotview@24.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-pivotview@24.1.43",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-EL+akaG18TJNF3tVDzBtChdrj02d4UPt3mBlkCZmjMzLYOfYi/tp5C/icipd8TuyTSiWLYRKxgx5dfM9ELcXvw==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-vue-pivotview",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-vue-pivotview/-/ej2-vue-pivotview-24.1.43.tgz",
|
|
23
|
+
"_shasum": "075d264ca5d85a84595f5274c4687604d2cf8d80",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-pivotview@*",
|
|
25
|
-
"_where": "/jenkins/workspace/elease-
|
|
25
|
+
"_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
27
27
|
"name": "Syncfusion Inc."
|
|
28
28
|
},
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~
|
|
35
|
-
"@syncfusion/ej2-pivotview": "
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~
|
|
34
|
+
"@syncfusion/ej2-base": "~25.1.35",
|
|
35
|
+
"@syncfusion/ej2-pivotview": "25.1.35",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~25.1.35"
|
|
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",
|
|
@@ -57,6 +57,6 @@
|
|
|
57
57
|
"ci-publish": "gulp ci-publish",
|
|
58
58
|
"compile": "gulp ci-compile && gulp vue-global-script"
|
|
59
59
|
},
|
|
60
|
-
"version": "
|
|
60
|
+
"version": "25.1.35",
|
|
61
61
|
"sideEffects": false
|
|
62
62
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
|
|
2
|
-
import { PivotFieldListModel } from '@syncfusion/ej2-pivotview';
|
|
1
|
+
import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
|
|
2
|
+
import { PivotFieldList, PivotFieldListModel } from '@syncfusion/ej2-pivotview';
|
|
3
3
|
export declare const properties: string[];
|
|
4
4
|
export declare const modelProps: string[];
|
|
5
5
|
export declare const testProp: any;
|
|
@@ -11,7 +11,25 @@ export declare const props: any, watch: any, emitProbs: any;
|
|
|
11
11
|
* ```
|
|
12
12
|
*/
|
|
13
13
|
export declare let PivotFieldListComponent: DefineVueComponent<PivotFieldListModel>;
|
|
14
|
-
export declare type PivotFieldListComponent =
|
|
14
|
+
export declare type PivotFieldListComponent = typeof ComponentBase & {
|
|
15
|
+
ej2Instances: PivotFieldList;
|
|
16
|
+
isVue3: boolean;
|
|
17
|
+
isLazyUpdate: Boolean;
|
|
18
|
+
plugins: any[];
|
|
19
|
+
propKeys: string[];
|
|
20
|
+
models: string[];
|
|
21
|
+
hasChildDirective: boolean;
|
|
22
|
+
tagMapper: {
|
|
23
|
+
[key: string]: Object;
|
|
24
|
+
};
|
|
25
|
+
tagNameMapper: Object;
|
|
26
|
+
setProperties(prop: any, muteOnChange: boolean): void;
|
|
27
|
+
trigger(eventName: string, eventProp: {
|
|
28
|
+
[key: string]: Object;
|
|
29
|
+
}, successHandler?: Function): void;
|
|
30
|
+
update(control: Object): void;
|
|
31
|
+
updateView(control: Object): void;
|
|
32
|
+
};
|
|
15
33
|
export declare const PivotFieldListPlugin: {
|
|
16
34
|
name: string;
|
|
17
35
|
install(Vue: any): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
|
|
2
|
-
import { PivotViewModel } from '@syncfusion/ej2-pivotview';
|
|
1
|
+
import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
|
|
2
|
+
import { PivotView, PivotViewModel } from '@syncfusion/ej2-pivotview';
|
|
3
3
|
export declare const properties: string[];
|
|
4
4
|
export declare const modelProps: string[];
|
|
5
5
|
export declare const testProp: any;
|
|
@@ -11,7 +11,33 @@ export declare const props: any, watch: any, emitProbs: any;
|
|
|
11
11
|
* ```
|
|
12
12
|
*/
|
|
13
13
|
export declare let PivotViewComponent: DefineVueComponent<PivotViewModel>;
|
|
14
|
-
export declare type PivotViewComponent =
|
|
14
|
+
export declare type PivotViewComponent = typeof ComponentBase & {
|
|
15
|
+
ej2Instances: PivotView;
|
|
16
|
+
isVue3: boolean;
|
|
17
|
+
isLazyUpdate: Boolean;
|
|
18
|
+
plugins: any[];
|
|
19
|
+
propKeys: string[];
|
|
20
|
+
models: string[];
|
|
21
|
+
hasChildDirective: boolean;
|
|
22
|
+
tagMapper: {
|
|
23
|
+
[key: string]: Object;
|
|
24
|
+
};
|
|
25
|
+
tagNameMapper: Object;
|
|
26
|
+
setProperties(prop: any, muteOnChange: boolean): void;
|
|
27
|
+
trigger(eventName: string, eventProp: {
|
|
28
|
+
[key: string]: Object;
|
|
29
|
+
}, successHandler?: Function): void;
|
|
30
|
+
chartExport(type: Object, pdfExportProperties?: Object, isMultipleExport?: boolean, pdfDoc?: Object, isBlob?: boolean): Object;
|
|
31
|
+
createCalculatedFieldDialog(): void;
|
|
32
|
+
csvExport(excelExportProperties?: Object, isMultipleExport?: boolean, workbook?: any, isBlob?: boolean, isServerExport?: boolean): void;
|
|
33
|
+
excelExport(excelExportProperties?: Object, isMultipleExport?: boolean, workbook?: any, isBlob?: boolean, isServerExport?: boolean): void;
|
|
34
|
+
loadPersistData(persistData: string): void;
|
|
35
|
+
pdfExport(pdfExportProperties?: Object, isMultipleExport?: boolean, pdfDoc?: Object, isBlob?: boolean, exportBothTableAndChart?: boolean): Object;
|
|
36
|
+
printChart(): void;
|
|
37
|
+
refresh(): void;
|
|
38
|
+
showConditionalFormattingDialog(): void;
|
|
39
|
+
showNumberFormattingDialog(): void;
|
|
40
|
+
};
|
|
15
41
|
export declare const PivotViewPlugin: {
|
|
16
42
|
name: string;
|
|
17
43
|
install(Vue: any): void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';
|
|
2
2
|
import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
|
|
3
3
|
import { PivotView } from '@syncfusion/ej2-pivotview';
|
|
4
|
-
export var properties = ['isLazyUpdate', 'plugins', 'aggregateTypes', 'allowCalculatedField', 'allowConditionalFormatting', 'allowDataCompression', 'allowDeferLayoutUpdate', 'allowDrillThrough', 'allowExcelExport', 'allowGrouping', 'allowNumberFormatting', 'allowPdfExport', 'cellTemplate', 'chartSettings', 'chartTypes', 'cssClass', 'dataSourceSettings', 'displayOption', 'editSettings', 'enableFieldSearching', 'enableHtmlSanitizer', 'enablePaging', 'enablePersistence', 'enableRtl', 'enableValueSorting', 'enableVirtualization', 'exportAllPages', 'gridSettings', 'groupingBarSettings', 'height', 'hyperlinkSettings', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'maxRowsInDrillThrough', 'pageSettings', 'pagerSettings', 'pivotValues', 'showFieldList', 'showGroupingBar', 'showToolbar', 'showTooltip', 'showValuesButton', 'spinnerTemplate', 'toolbar', 'toolbarTemplate', 'tooltipTemplate', 'width', 'actionBegin', 'actionComplete', 'actionFailure', 'afterServiceInvoke', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeExport', 'beforeServiceInvoke', 'beginDrillThrough', 'calculatedFieldCreate', 'cellClick', 'cellSelected', 'cellSelecting', 'chartSeriesCreated', 'conditionalFormatting', 'created', 'dataBound', 'destroyed', 'drill', 'drillThrough', 'editCompleted', 'enginePopulated', 'enginePopulating', 'exportComplete', 'fetchReport', 'fieldDragStart', 'fieldDrop', 'fieldListRefreshed', 'fieldRemove', 'hyperlinkCellClick', 'load', 'loadReport', 'memberEditorOpen', 'memberFiltering', 'newReport', 'numberFormatting', 'onFieldDropped', 'onHeadersSort', 'onPdfCellRender', 'removeReport', 'renameReport', 'saveReport', 'toolbarClick', 'toolbarRender'];
|
|
4
|
+
export var properties = ['isLazyUpdate', 'plugins', 'aggregateTypes', 'allowCalculatedField', 'allowConditionalFormatting', 'allowDataCompression', 'allowDeferLayoutUpdate', 'allowDrillThrough', 'allowExcelExport', 'allowGrouping', 'allowNumberFormatting', 'allowPdfExport', 'cellTemplate', 'chartSettings', 'chartTypes', 'cssClass', 'dataSourceSettings', 'displayOption', 'editSettings', 'enableFieldSearching', 'enableHtmlSanitizer', 'enablePaging', 'enablePersistence', 'enableRtl', 'enableValueSorting', 'enableVirtualization', 'exportAllPages', 'gridSettings', 'groupingBarSettings', 'height', 'hyperlinkSettings', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'maxRowsInDrillThrough', 'pageSettings', 'pagerSettings', 'pivotValues', 'showFieldList', 'showGroupingBar', 'showToolbar', 'showTooltip', 'showValuesButton', 'spinnerTemplate', 'toolbar', 'toolbarTemplate', 'tooltipTemplate', 'virtualScrollSettings', 'width', 'actionBegin', 'actionComplete', 'actionFailure', 'afterServiceInvoke', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeExport', 'beforeServiceInvoke', 'beginDrillThrough', 'calculatedFieldCreate', 'cellClick', 'cellSelected', 'cellSelecting', 'chartSeriesCreated', 'conditionalFormatting', 'created', 'dataBound', 'destroyed', 'drill', 'drillThrough', 'editCompleted', 'enginePopulated', 'enginePopulating', 'exportComplete', 'fetchReport', 'fieldDragStart', 'fieldDrop', 'fieldListRefreshed', 'fieldRemove', 'hyperlinkCellClick', 'load', 'loadReport', 'memberEditorOpen', 'memberFiltering', 'newReport', 'numberFormatting', 'onFieldDropped', 'onHeadersSort', 'onPdfCellRender', 'removeReport', 'renameReport', 'saveReport', 'toolbarClick', 'toolbarRender'];
|
|
5
5
|
export var modelProps = [];
|
|
6
6
|
export var testProp = getProps({ props: properties });
|
|
7
7
|
export var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);
|