@syncfusion/ej2-angular-pivotview 31.1.17 → 31.1.20-ngcc
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/@syncfusion/ej2-angular-pivotview.es5.js +439 -0
- package/@syncfusion/ej2-angular-pivotview.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-pivotview.js +409 -0
- package/@syncfusion/ej2-angular-pivotview.js.map +1 -0
- package/LICENSE +10 -0
- package/README.md +1 -1
- package/dist/ej2-angular-pivotview.umd.js +727 -0
- package/dist/ej2-angular-pivotview.umd.js.map +1 -0
- package/dist/ej2-angular-pivotview.umd.min.js +2 -0
- package/dist/ej2-angular-pivotview.umd.min.js.map +1 -0
- package/ej2-angular-pivotview.d.ts +6 -0
- package/ej2-angular-pivotview.metadata.json +1 -0
- package/package.json +28 -72
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/index.d.ts +7 -7
- package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +5 -11
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +48 -51
- package/src/pivotfieldlist/pivotfieldlist.module.d.ts +5 -11
- package/src/pivotview/pivotview-all.module.d.ts +19 -25
- package/src/pivotview/pivotview.component.d.ts +85 -88
- package/src/pivotview/pivotview.module.d.ts +5 -11
- package/styles/pivotfieldlist/material3-dark.scss +1 -1
- package/styles/pivotfieldlist/material3.scss +1 -1
- package/styles/pivotview/material3-dark.scss +1 -1
- package/styles/pivotview/material3.scss +1 -1
- package/CHANGELOG.md +0 -998
- package/esm2020/public_api.mjs +0 -2
- package/esm2020/src/index.mjs +0 -8
- package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +0 -23
- package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +0 -66
- package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +0 -25
- package/esm2020/src/pivotview/pivotview-all.module.mjs +0 -65
- package/esm2020/src/pivotview/pivotview.component.mjs +0 -163
- package/esm2020/src/pivotview/pivotview.module.mjs +0 -25
- package/esm2020/syncfusion-ej2-angular-pivotview.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +0 -351
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +0 -351
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +0 -1
- package/syncfusion-ej2-angular-pivotview.d.ts +0 -5
|
@@ -1,25 +1,19 @@
|
|
|
1
|
-
import { ValueProvider } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
10
|
-
export declare const
|
|
11
|
-
export declare const
|
|
12
|
-
export declare const
|
|
13
|
-
export declare const
|
|
14
|
-
export declare const
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
*/
|
|
21
|
-
export declare class PivotViewAllModule {
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PivotViewAllModule, never>;
|
|
23
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PivotViewAllModule, never, [typeof i1.CommonModule, typeof i2.PivotViewModule], [typeof i2.PivotViewModule]>;
|
|
24
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<PivotViewAllModule>;
|
|
25
|
-
}
|
|
1
|
+
import { ValueProvider } from '@angular/core';
|
|
2
|
+
export declare const GroupingBarService: ValueProvider;
|
|
3
|
+
export declare const FieldListService: ValueProvider;
|
|
4
|
+
export declare const CalculatedFieldService: ValueProvider;
|
|
5
|
+
export declare const ConditionalFormattingService: ValueProvider;
|
|
6
|
+
export declare const VirtualScrollService: ValueProvider;
|
|
7
|
+
export declare const DrillThroughService: ValueProvider;
|
|
8
|
+
export declare const ToolbarService: ValueProvider;
|
|
9
|
+
export declare const PivotChartService: ValueProvider;
|
|
10
|
+
export declare const PDFExportService: ValueProvider;
|
|
11
|
+
export declare const ExcelExportService: ValueProvider;
|
|
12
|
+
export declare const NumberFormattingService: ValueProvider;
|
|
13
|
+
export declare const GroupingService: ValueProvider;
|
|
14
|
+
export declare const PagerService: ValueProvider;
|
|
15
|
+
/**
|
|
16
|
+
* NgModule definition for the PivotView component with providers.
|
|
17
|
+
*/
|
|
18
|
+
export declare class PivotViewAllModule {
|
|
19
|
+
}
|
|
@@ -1,88 +1,85 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { PivotView } from '@syncfusion/ej2-pivotview';
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
private
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
*
|
|
67
|
-
*
|
|
68
|
-
* @
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
*
|
|
74
|
-
*
|
|
75
|
-
* @
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PivotViewComponent, never>;
|
|
87
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PivotViewComponent, "ejs-pivotview", never, { "aggregateTypes": "aggregateTypes"; "allowCalculatedField": "allowCalculatedField"; "allowConditionalFormatting": "allowConditionalFormatting"; "allowDataCompression": "allowDataCompression"; "allowDeferLayoutUpdate": "allowDeferLayoutUpdate"; "allowDrillThrough": "allowDrillThrough"; "allowExcelExport": "allowExcelExport"; "allowGrouping": "allowGrouping"; "allowNumberFormatting": "allowNumberFormatting"; "allowPdfExport": "allowPdfExport"; "cellTemplate": "cellTemplate"; "chartSettings": "chartSettings"; "chartTypes": "chartTypes"; "cssClass": "cssClass"; "dataSourceSettings": "dataSourceSettings"; "displayOption": "displayOption"; "editSettings": "editSettings"; "enableFieldSearching": "enableFieldSearching"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePaging": "enablePaging"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableValueSorting": "enableValueSorting"; "enableVirtualization": "enableVirtualization"; "exportAllPages": "exportAllPages"; "gridSettings": "gridSettings"; "groupingBarSettings": "groupingBarSettings"; "height": "height"; "hyperlinkSettings": "hyperlinkSettings"; "loadOnDemandInMemberEditor": "loadOnDemandInMemberEditor"; "locale": "locale"; "maxNodeLimitInMemberEditor": "maxNodeLimitInMemberEditor"; "maxRowsInDrillThrough": "maxRowsInDrillThrough"; "pageSettings": "pageSettings"; "pagerSettings": "pagerSettings"; "pivotValues": "pivotValues"; "showFieldList": "showFieldList"; "showGroupingBar": "showGroupingBar"; "showToolbar": "showToolbar"; "showTooltip": "showTooltip"; "showValuesButton": "showValuesButton"; "spinnerTemplate": "spinnerTemplate"; "toolbar": "toolbar"; "toolbarTemplate": "toolbarTemplate"; "tooltipTemplate": "tooltipTemplate"; "virtualScrollSettings": "virtualScrollSettings"; "width": "width"; }, { "actionBegin": "actionBegin"; "actionComplete": "actionComplete"; "actionFailure": "actionFailure"; "afterServiceInvoke": "afterServiceInvoke"; "aggregateCellInfo": "aggregateCellInfo"; "aggregateMenuOpen": "aggregateMenuOpen"; "beforeExport": "beforeExport"; "beforeServiceInvoke": "beforeServiceInvoke"; "beginDrillThrough": "beginDrillThrough"; "calculatedFieldCreate": "calculatedFieldCreate"; "cellClick": "cellClick"; "cellSelected": "cellSelected"; "cellSelecting": "cellSelecting"; "chartSeriesCreated": "chartSeriesCreated"; "conditionalFormatting": "conditionalFormatting"; "created": "created"; "dataBound": "dataBound"; "destroyed": "destroyed"; "drill": "drill"; "drillThrough": "drillThrough"; "editCompleted": "editCompleted"; "enginePopulated": "enginePopulated"; "enginePopulating": "enginePopulating"; "exportComplete": "exportComplete"; "fetchReport": "fetchReport"; "fieldDragStart": "fieldDragStart"; "fieldDrop": "fieldDrop"; "fieldListRefreshed": "fieldListRefreshed"; "fieldRemove": "fieldRemove"; "hyperlinkCellClick": "hyperlinkCellClick"; "load": "load"; "loadReport": "loadReport"; "memberEditorOpen": "memberEditorOpen"; "memberFiltering": "memberFiltering"; "newReport": "newReport"; "numberFormatting": "numberFormatting"; "onFieldDropped": "onFieldDropped"; "onHeadersSort": "onHeadersSort"; "onPdfCellRender": "onPdfCellRender"; "removeReport": "removeReport"; "renameReport": "renameReport"; "saveReport": "saveReport"; "toolbarClick": "toolbarClick"; "toolbarRender": "toolbarRender"; }, ["cellTemplate", "tooltipTemplate"], never>;
|
|
88
|
-
}
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { PivotView } from '@syncfusion/ej2-pivotview';
|
|
4
|
+
export declare const inputs: string[];
|
|
5
|
+
export declare const outputs: string[];
|
|
6
|
+
export declare const twoWays: string[];
|
|
7
|
+
/**
|
|
8
|
+
* `ej-pivotview` represents the Angular Pivot Table Component.
|
|
9
|
+
* ```html
|
|
10
|
+
* <ej-pivotview></ej-pivotview>
|
|
11
|
+
* ```
|
|
12
|
+
*/
|
|
13
|
+
export declare class PivotViewComponent extends PivotView implements IComponentBase {
|
|
14
|
+
private ngEle;
|
|
15
|
+
private srenderer;
|
|
16
|
+
private viewContainerRef;
|
|
17
|
+
private injector;
|
|
18
|
+
context: any;
|
|
19
|
+
tagObjects: any;
|
|
20
|
+
actionBegin: any;
|
|
21
|
+
actionComplete: any;
|
|
22
|
+
actionFailure: any;
|
|
23
|
+
afterServiceInvoke: any;
|
|
24
|
+
aggregateCellInfo: any;
|
|
25
|
+
aggregateMenuOpen: any;
|
|
26
|
+
beforeExport: any;
|
|
27
|
+
beforeServiceInvoke: any;
|
|
28
|
+
beginDrillThrough: any;
|
|
29
|
+
calculatedFieldCreate: any;
|
|
30
|
+
cellClick: any;
|
|
31
|
+
cellSelected: any;
|
|
32
|
+
cellSelecting: any;
|
|
33
|
+
chartSeriesCreated: any;
|
|
34
|
+
conditionalFormatting: any;
|
|
35
|
+
created: any;
|
|
36
|
+
dataBound: any;
|
|
37
|
+
destroyed: any;
|
|
38
|
+
drill: any;
|
|
39
|
+
drillThrough: any;
|
|
40
|
+
editCompleted: any;
|
|
41
|
+
enginePopulated: any;
|
|
42
|
+
enginePopulating: any;
|
|
43
|
+
exportComplete: any;
|
|
44
|
+
fetchReport: any;
|
|
45
|
+
fieldDragStart: any;
|
|
46
|
+
fieldDrop: any;
|
|
47
|
+
fieldListRefreshed: any;
|
|
48
|
+
fieldRemove: any;
|
|
49
|
+
hyperlinkCellClick: any;
|
|
50
|
+
load: any;
|
|
51
|
+
loadReport: any;
|
|
52
|
+
memberEditorOpen: any;
|
|
53
|
+
memberFiltering: any;
|
|
54
|
+
newReport: any;
|
|
55
|
+
numberFormatting: any;
|
|
56
|
+
onFieldDropped: any;
|
|
57
|
+
onHeadersSort: any;
|
|
58
|
+
onPdfCellRender: any;
|
|
59
|
+
removeReport: any;
|
|
60
|
+
renameReport: any;
|
|
61
|
+
saveReport: any;
|
|
62
|
+
toolbarClick: any;
|
|
63
|
+
toolbarRender: any;
|
|
64
|
+
/**
|
|
65
|
+
* Allows the table cell elements to be customized with either an HTML string or the element’s ID,
|
|
66
|
+
* that can be used to add additional HTML elements with custom formats to the cell elements that are displayed in the pivot table.
|
|
67
|
+
* @default null
|
|
68
|
+
* @asptype string
|
|
69
|
+
*/
|
|
70
|
+
cellTemplate: any;
|
|
71
|
+
/**
|
|
72
|
+
* Allows the tooltip element to be customized with either an HTML string or the element’s ID,
|
|
73
|
+
* can be used to displayed with custom formats either by mouse hovering or by touch in the pivot table.
|
|
74
|
+
* @default null
|
|
75
|
+
* @asptype string
|
|
76
|
+
*/
|
|
77
|
+
tooltipTemplate: any;
|
|
78
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
79
|
+
ngOnInit(): void;
|
|
80
|
+
ngAfterViewInit(): void;
|
|
81
|
+
ngOnDestroy(): void;
|
|
82
|
+
ngAfterContentChecked(): void;
|
|
83
|
+
registerEvents: (eventList: string[]) => void;
|
|
84
|
+
addTwoWay: (propList: string[]) => void;
|
|
85
|
+
}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
*/
|
|
7
|
-
export declare class PivotViewModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PivotViewModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PivotViewModule, [typeof i1.PivotViewComponent], [typeof i2.CommonModule], [typeof i1.PivotViewComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<PivotViewModule>;
|
|
11
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* NgModule definition for the PivotView component.
|
|
3
|
+
*/
|
|
4
|
+
export declare class PivotViewModule {
|
|
5
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
@import 'ej2-base/styles/definition/material3-dark.scss';
|
|
2
2
|
@import 'ej2-pivotview/styles/pivotfieldlist/material3-dark.scss';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
@import 'ej2-base/styles/definition/material3.scss';
|
|
2
2
|
@import 'ej2-pivotview/styles/pivotfieldlist/material3.scss';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
@import 'ej2-base/styles/definition/material3-dark.scss';
|
|
2
2
|
@import 'ej2-pivotview/styles/pivotview/material3-dark.scss';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
@import 'ej2-base/styles/definition/material3.scss';
|
|
2
2
|
@import 'ej2-pivotview/styles/pivotview/material3.scss';
|