@syncfusion/ej2-angular-pivotview 30.2.4 → 30.2.6-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.
Files changed (37) hide show
  1. package/@syncfusion/ej2-angular-pivotview.es5.js +439 -0
  2. package/@syncfusion/ej2-angular-pivotview.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-pivotview.js +409 -0
  4. package/@syncfusion/ej2-angular-pivotview.js.map +1 -0
  5. package/LICENSE +10 -0
  6. package/dist/ej2-angular-pivotview.umd.js +736 -0
  7. package/dist/ej2-angular-pivotview.umd.js.map +1 -0
  8. package/dist/ej2-angular-pivotview.umd.min.js +11 -0
  9. package/dist/ej2-angular-pivotview.umd.min.js.map +1 -0
  10. package/ej2-angular-pivotview.d.ts +6 -0
  11. package/ej2-angular-pivotview.metadata.json +1 -0
  12. package/package.json +8 -21
  13. package/public_api.d.ts +1 -1
  14. package/schematics/utils/lib-details.js +2 -2
  15. package/schematics/utils/lib-details.ts +2 -2
  16. package/src/index.d.ts +7 -7
  17. package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +5 -11
  18. package/src/pivotfieldlist/pivotfieldlist.component.d.ts +48 -51
  19. package/src/pivotfieldlist/pivotfieldlist.module.d.ts +5 -11
  20. package/src/pivotview/pivotview-all.module.d.ts +19 -25
  21. package/src/pivotview/pivotview.component.d.ts +85 -88
  22. package/src/pivotview/pivotview.module.d.ts +5 -11
  23. package/CHANGELOG.md +0 -1029
  24. package/esm2020/public_api.mjs +0 -2
  25. package/esm2020/src/index.mjs +0 -8
  26. package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +0 -23
  27. package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +0 -66
  28. package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +0 -25
  29. package/esm2020/src/pivotview/pivotview-all.module.mjs +0 -65
  30. package/esm2020/src/pivotview/pivotview.component.mjs +0 -163
  31. package/esm2020/src/pivotview/pivotview.module.mjs +0 -25
  32. package/esm2020/syncfusion-ej2-angular-pivotview.mjs +0 -5
  33. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +0 -351
  34. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +0 -1
  35. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +0 -351
  36. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +0 -1
  37. package/syncfusion-ej2-angular-pivotview.d.ts +0 -5
@@ -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
- import * as i0 from "@angular/core";
5
- export declare const inputs: string[];
6
- export declare const outputs: string[];
7
- export declare const twoWays: string[];
8
- /**
9
- * `ej-pivotview` represents the Angular Pivot Table Component.
10
- * ```html
11
- * <ej-pivotview></ej-pivotview>
12
- * ```
13
- */
14
- export declare class PivotViewComponent extends PivotView implements IComponentBase {
15
- private ngEle;
16
- private srenderer;
17
- private viewContainerRef;
18
- private injector;
19
- context: any;
20
- tagObjects: any;
21
- actionBegin: any;
22
- actionComplete: any;
23
- actionFailure: any;
24
- afterServiceInvoke: any;
25
- aggregateCellInfo: any;
26
- aggregateMenuOpen: any;
27
- beforeExport: any;
28
- beforeServiceInvoke: any;
29
- beginDrillThrough: any;
30
- calculatedFieldCreate: any;
31
- cellClick: any;
32
- cellSelected: any;
33
- cellSelecting: any;
34
- chartSeriesCreated: any;
35
- conditionalFormatting: any;
36
- created: any;
37
- dataBound: any;
38
- destroyed: any;
39
- drill: any;
40
- drillThrough: any;
41
- editCompleted: any;
42
- enginePopulated: any;
43
- enginePopulating: any;
44
- exportComplete: any;
45
- fetchReport: any;
46
- fieldDragStart: any;
47
- fieldDrop: any;
48
- fieldListRefreshed: any;
49
- fieldRemove: any;
50
- hyperlinkCellClick: any;
51
- load: any;
52
- loadReport: any;
53
- memberEditorOpen: any;
54
- memberFiltering: any;
55
- newReport: any;
56
- numberFormatting: any;
57
- onFieldDropped: any;
58
- onHeadersSort: any;
59
- onPdfCellRender: any;
60
- removeReport: any;
61
- renameReport: any;
62
- saveReport: any;
63
- toolbarClick: any;
64
- toolbarRender: any;
65
- /**
66
- * Allows the table cell elements to be customized with either an HTML string or the element’s ID,
67
- * that can be used to add additional HTML elements with custom formats to the cell elements that are displayed in the pivot table.
68
- * @default null
69
- * @asptype string
70
- */
71
- cellTemplate: any;
72
- /**
73
- * Allows the tooltip element to be customized with either an HTML string or the element’s ID,
74
- * can be used to displayed with custom formats either by mouse hovering or by touch in the pivot table.
75
- * @default null
76
- * @asptype string
77
- */
78
- tooltipTemplate: any;
79
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
80
- ngOnInit(): void;
81
- ngAfterViewInit(): void;
82
- ngOnDestroy(): void;
83
- ngAfterContentChecked(): void;
84
- registerEvents: (eventList: string[]) => void;
85
- addTwoWay: (propList: string[]) => void;
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
- import * as i0 from "@angular/core";
2
- import * as i1 from "./pivotview.component";
3
- import * as i2 from "@angular/common";
4
- /**
5
- * NgModule definition for the PivotView component.
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
+ }