@syncfusion/ej2-angular-pivotview 31.2.4 → 31.2.5-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 +2 -10
- package/dist/ej2-angular-pivotview.umd.js +736 -0
- package/dist/ej2-angular-pivotview.umd.js.map +1 -0
- package/dist/ej2-angular-pivotview.umd.min.js +11 -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 +9 -22
- 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/CHANGELOG.md +0 -1052
- 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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ej2-angular-pivotview.umd.js","sources":["~/@syncfusion/ej2-angular-pivotview/src/pivotfieldlist/pivotfieldlist-all.module.ts","~/@syncfusion/ej2-angular-pivotview/src/pivotfieldlist/pivotfieldlist.module.ts","~/@syncfusion/ej2-angular-pivotview/src/pivotfieldlist/pivotfieldlist.component.ts","~/@syncfusion/ej2-angular-pivotview/src/pivotview/pivotview-all.module.ts","~/@syncfusion/ej2-angular-pivotview/src/pivotview/pivotview.module.ts","~/@syncfusion/ej2-angular-pivotview/src/pivotview/pivotview.component.ts"],"sourcesContent":["import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PivotFieldListComponent } from './pivotfieldlist.component';\nimport { PivotFieldListModule } from './pivotfieldlist.module';\n/**\n * NgModule definition for the PivotFieldList component with providers.\n */\nexport class PivotFieldListAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, PivotFieldListModule],\n exports: [\n PivotFieldListModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PivotFieldListAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nPivotFieldListAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPivotFieldListAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PivotFieldListComponent } from './pivotfieldlist.component';\n/**\n * NgModule definition for the PivotFieldList component.\n */\nexport class PivotFieldListModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n PivotFieldListComponent\n ],\n exports: [\n PivotFieldListComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PivotFieldListModule_tsickle_Closure_declarations() {\n/** @type {?} */\nPivotFieldListModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPivotFieldListModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { PivotFieldList } from '@syncfusion/ej2-pivotview';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['aggregateTypes','allowCalculatedField','allowDeferLayoutUpdate','cssClass','currencyCode','dataSourceSettings','enableFieldSearching','enableHtmlSanitizer','enablePersistence','enableRtl','loadOnDemandInMemberEditor','locale','maxNodeLimitInMemberEditor','renderMode','showValuesButton','spinnerTemplate','target'];\nexport const /** @type {?} */ outputs: string[] = ['actionBegin','actionComplete','actionFailure','afterServiceInvoke','aggregateCellInfo','aggregateMenuOpen','beforeServiceInvoke','calculatedFieldCreate','created','dataBound','destroyed','enginePopulated','enginePopulating','fieldDragStart','fieldDrop','fieldRemove','load','memberEditorOpen','memberFiltering','onFieldDropped','onHeadersSort'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * `ej-pivotfieldlist` represents the Angular PivotFieldList Component.\n * ```html\n * <ej-pivotfieldlist></ej-pivotfieldlist>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class PivotFieldListComponent extends PivotFieldList implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tafterServiceInvoke: any;\n\taggregateCellInfo: any;\n\taggregateMenuOpen: any;\n\tbeforeServiceInvoke: any;\n\tcalculatedFieldCreate: any;\n\tcreated: any;\n\tdataBound: any;\n\tdestroyed: any;\n\tenginePopulated: any;\n\tenginePopulating: any;\n\tfieldDragStart: any;\n\tfieldDrop: any;\n\tfieldRemove: any;\n\tload: any;\n\tmemberEditorOpen: any;\n\tmemberFiltering: any;\n\tonFieldDropped: any;\npublic onHeadersSort: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('PivotViewCalculatedField');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-pivotfieldlist',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction PivotFieldListComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nPivotFieldListComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPivotFieldListComponent.ctorParameters;\n/** @type {?} */\nPivotFieldListComponent.prototype.context;\n/** @type {?} */\nPivotFieldListComponent.prototype.tagObjects;\n/** @type {?} */\nPivotFieldListComponent.prototype.actionBegin;\n/** @type {?} */\nPivotFieldListComponent.prototype.actionComplete;\n/** @type {?} */\nPivotFieldListComponent.prototype.actionFailure;\n/** @type {?} */\nPivotFieldListComponent.prototype.afterServiceInvoke;\n/** @type {?} */\nPivotFieldListComponent.prototype.aggregateCellInfo;\n/** @type {?} */\nPivotFieldListComponent.prototype.aggregateMenuOpen;\n/** @type {?} */\nPivotFieldListComponent.prototype.beforeServiceInvoke;\n/** @type {?} */\nPivotFieldListComponent.prototype.calculatedFieldCreate;\n/** @type {?} */\nPivotFieldListComponent.prototype.created;\n/** @type {?} */\nPivotFieldListComponent.prototype.dataBound;\n/** @type {?} */\nPivotFieldListComponent.prototype.destroyed;\n/** @type {?} */\nPivotFieldListComponent.prototype.enginePopulated;\n/** @type {?} */\nPivotFieldListComponent.prototype.enginePopulating;\n/** @type {?} */\nPivotFieldListComponent.prototype.fieldDragStart;\n/** @type {?} */\nPivotFieldListComponent.prototype.fieldDrop;\n/** @type {?} */\nPivotFieldListComponent.prototype.fieldRemove;\n/** @type {?} */\nPivotFieldListComponent.prototype.load;\n/** @type {?} */\nPivotFieldListComponent.prototype.memberEditorOpen;\n/** @type {?} */\nPivotFieldListComponent.prototype.memberFiltering;\n/** @type {?} */\nPivotFieldListComponent.prototype.onFieldDropped;\n/** @type {?} */\nPivotFieldListComponent.prototype.onHeadersSort;\n/** @type {?} */\nPivotFieldListComponent.prototype.registerEvents;\n/** @type {?} */\nPivotFieldListComponent.prototype.addTwoWay;\n/** @type {?} */\nPivotFieldListComponent.prototype.ngEle;\n/** @type {?} */\nPivotFieldListComponent.prototype.srenderer;\n/** @type {?} */\nPivotFieldListComponent.prototype.viewContainerRef;\n/** @type {?} */\nPivotFieldListComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PivotViewComponent } from './pivotview.component';\nimport { PivotViewModule } from './pivotview.module';\nimport {GroupingBar, FieldList, CalculatedField, ConditionalFormatting, VirtualScroll, DrillThrough, Toolbar, PivotChart, PDFExport, ExcelExport, NumberFormatting, Grouping, Pager} from '@syncfusion/ej2-pivotview';\n\n\nexport const /** @type {?} */ GroupingBarService: ValueProvider = { provide: 'PivotViewGroupingBar', useValue: GroupingBar};\nexport const /** @type {?} */ FieldListService: ValueProvider = { provide: 'PivotViewFieldList', useValue: FieldList};\nexport const /** @type {?} */ CalculatedFieldService: ValueProvider = { provide: 'PivotViewCalculatedField', useValue: CalculatedField};\nexport const /** @type {?} */ ConditionalFormattingService: ValueProvider = { provide: 'PivotViewConditionalFormatting', useValue: ConditionalFormatting};\nexport const /** @type {?} */ VirtualScrollService: ValueProvider = { provide: 'PivotViewVirtualScroll', useValue: VirtualScroll};\nexport const /** @type {?} */ DrillThroughService: ValueProvider = { provide: 'PivotViewDrillThrough', useValue: DrillThrough};\nexport const /** @type {?} */ ToolbarService: ValueProvider = { provide: 'PivotViewToolbar', useValue: Toolbar};\nexport const /** @type {?} */ PivotChartService: ValueProvider = { provide: 'PivotViewPivotChart', useValue: PivotChart};\nexport const /** @type {?} */ PDFExportService: ValueProvider = { provide: 'PivotViewPDFExport', useValue: PDFExport};\nexport const /** @type {?} */ ExcelExportService: ValueProvider = { provide: 'PivotViewExcelExport', useValue: ExcelExport};\nexport const /** @type {?} */ NumberFormattingService: ValueProvider = { provide: 'PivotViewNumberFormatting', useValue: NumberFormatting};\nexport const /** @type {?} */ GroupingService: ValueProvider = { provide: 'PivotViewGrouping', useValue: Grouping};\nexport const /** @type {?} */ PagerService: ValueProvider = { provide: 'PivotViewPager', useValue: Pager};\n/**\n * NgModule definition for the PivotView component with providers.\n */\nexport class PivotViewAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, PivotViewModule],\n exports: [\n PivotViewModule\n ],\n providers:[\n GroupingBarService,\n FieldListService,\n CalculatedFieldService,\n ConditionalFormattingService,\n VirtualScrollService,\n DrillThroughService,\n ToolbarService,\n PivotChartService,\n PDFExportService,\n ExcelExportService,\n NumberFormattingService,\n GroupingService,\n PagerService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PivotViewAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nPivotViewAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPivotViewAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PivotViewComponent } from './pivotview.component';\n/**\n * NgModule definition for the PivotView component.\n */\nexport class PivotViewModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n PivotViewComponent\n ],\n exports: [\n PivotViewComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PivotViewModule_tsickle_Closure_declarations() {\n/** @type {?} */\nPivotViewModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPivotViewModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { PivotView } from '@syncfusion/ej2-pivotview';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nexport const /** @type {?} */ inputs: string[] = ['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'];\nexport const /** @type {?} */ outputs: string[] = ['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'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * `ej-pivotview` represents the Angular Pivot Table Component.\n * ```html\n * <ej-pivotview></ej-pivotview>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class PivotViewComponent extends PivotView implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tafterServiceInvoke: any;\n\taggregateCellInfo: any;\n\taggregateMenuOpen: any;\n\tbeforeExport: any;\n\tbeforeServiceInvoke: any;\n\tbeginDrillThrough: any;\n\tcalculatedFieldCreate: any;\n\tcellClick: any;\n\tcellSelected: any;\n\tcellSelecting: any;\n\tchartSeriesCreated: any;\n\tconditionalFormatting: any;\n\tcreated: any;\n\tdataBound: any;\n\tdestroyed: any;\n\tdrill: any;\n\tdrillThrough: any;\n\teditCompleted: any;\n\tenginePopulated: any;\n\tenginePopulating: any;\n\texportComplete: any;\n\tfetchReport: any;\n\tfieldDragStart: any;\n\tfieldDrop: any;\n\tfieldListRefreshed: any;\n\tfieldRemove: any;\n\thyperlinkCellClick: any;\n\tload: any;\n\tloadReport: any;\n\tmemberEditorOpen: any;\n\tmemberFiltering: any;\n\tnewReport: any;\n\tnumberFormatting: any;\n\tonFieldDropped: any;\n\tonHeadersSort: any;\n\tonPdfCellRender: any;\n\tremoveReport: any;\n\trenameReport: any;\n\tsaveReport: any;\n\ttoolbarClick: any;\npublic toolbarRender: any;\n/**\n * Allows the table cell elements to be customized with either an HTML string or the element’s ID, \n * that can be used to add additional HTML elements with custom formats to the cell elements that are displayed in the pivot table.\n * \\@default null\n * \\@asptype string\n */\n@Template()\n public cellTemplate: any;\n/**\n * Allows the tooltip element to be customized with either an HTML string or the element’s ID, \n * can be used to displayed with custom formats either by mouse hovering or by touch in the pivot table.\n * \\@default null\n * \\@asptype string\n */\n@Template()\n public tooltipTemplate: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('PivotViewGroupingBar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewFieldList');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewCalculatedField');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewConditionalFormatting');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewVirtualScroll');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewDrillThrough');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewPivotChart');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewPDFExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewExcelExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewNumberFormatting');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewGrouping');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewPager');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-pivotview',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'cellTemplate': [{ type: ContentChild, args: ['cellTemplate', ] },],\n'tooltipTemplate': [{ type: ContentChild, args: ['tooltipTemplate', ] },],\n};\n}\n\nfunction PivotViewComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nPivotViewComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPivotViewComponent.ctorParameters;\n/** @type {?} */\nPivotViewComponent.propDecorators;\n/** @type {?} */\nPivotViewComponent.prototype.context;\n/** @type {?} */\nPivotViewComponent.prototype.tagObjects;\n/** @type {?} */\nPivotViewComponent.prototype.actionBegin;\n/** @type {?} */\nPivotViewComponent.prototype.actionComplete;\n/** @type {?} */\nPivotViewComponent.prototype.actionFailure;\n/** @type {?} */\nPivotViewComponent.prototype.afterServiceInvoke;\n/** @type {?} */\nPivotViewComponent.prototype.aggregateCellInfo;\n/** @type {?} */\nPivotViewComponent.prototype.aggregateMenuOpen;\n/** @type {?} */\nPivotViewComponent.prototype.beforeExport;\n/** @type {?} */\nPivotViewComponent.prototype.beforeServiceInvoke;\n/** @type {?} */\nPivotViewComponent.prototype.beginDrillThrough;\n/** @type {?} */\nPivotViewComponent.prototype.calculatedFieldCreate;\n/** @type {?} */\nPivotViewComponent.prototype.cellClick;\n/** @type {?} */\nPivotViewComponent.prototype.cellSelected;\n/** @type {?} */\nPivotViewComponent.prototype.cellSelecting;\n/** @type {?} */\nPivotViewComponent.prototype.chartSeriesCreated;\n/** @type {?} */\nPivotViewComponent.prototype.conditionalFormatting;\n/** @type {?} */\nPivotViewComponent.prototype.created;\n/** @type {?} */\nPivotViewComponent.prototype.dataBound;\n/** @type {?} */\nPivotViewComponent.prototype.destroyed;\n/** @type {?} */\nPivotViewComponent.prototype.drill;\n/** @type {?} */\nPivotViewComponent.prototype.drillThrough;\n/** @type {?} */\nPivotViewComponent.prototype.editCompleted;\n/** @type {?} */\nPivotViewComponent.prototype.enginePopulated;\n/** @type {?} */\nPivotViewComponent.prototype.enginePopulating;\n/** @type {?} */\nPivotViewComponent.prototype.exportComplete;\n/** @type {?} */\nPivotViewComponent.prototype.fetchReport;\n/** @type {?} */\nPivotViewComponent.prototype.fieldDragStart;\n/** @type {?} */\nPivotViewComponent.prototype.fieldDrop;\n/** @type {?} */\nPivotViewComponent.prototype.fieldListRefreshed;\n/** @type {?} */\nPivotViewComponent.prototype.fieldRemove;\n/** @type {?} */\nPivotViewComponent.prototype.hyperlinkCellClick;\n/** @type {?} */\nPivotViewComponent.prototype.load;\n/** @type {?} */\nPivotViewComponent.prototype.loadReport;\n/** @type {?} */\nPivotViewComponent.prototype.memberEditorOpen;\n/** @type {?} */\nPivotViewComponent.prototype.memberFiltering;\n/** @type {?} */\nPivotViewComponent.prototype.newReport;\n/** @type {?} */\nPivotViewComponent.prototype.numberFormatting;\n/** @type {?} */\nPivotViewComponent.prototype.onFieldDropped;\n/** @type {?} */\nPivotViewComponent.prototype.onHeadersSort;\n/** @type {?} */\nPivotViewComponent.prototype.onPdfCellRender;\n/** @type {?} */\nPivotViewComponent.prototype.removeReport;\n/** @type {?} */\nPivotViewComponent.prototype.renameReport;\n/** @type {?} */\nPivotViewComponent.prototype.saveReport;\n/** @type {?} */\nPivotViewComponent.prototype.toolbarClick;\n/** @type {?} */\nPivotViewComponent.prototype.toolbarRender;\n/**\n * Allows the table cell elements to be customized with either an HTML string or the element’s ID, \n * that can be used to add additional HTML elements with custom formats to the cell elements that are displayed in the pivot table.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nPivotViewComponent.prototype.cellTemplate;\n/**\n * Allows the tooltip element to be customized with either an HTML string or the element’s ID, \n * can be used to displayed with custom formats either by mouse hovering or by touch in the pivot table.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nPivotViewComponent.prototype.tooltipTemplate;\n/** @type {?} */\nPivotViewComponent.prototype.registerEvents;\n/** @type {?} */\nPivotViewComponent.prototype.addTwoWay;\n/** @type {?} */\nPivotViewComponent.prototype.ngEle;\n/** @type {?} */\nPivotViewComponent.prototype.srenderer;\n/** @type {?} */\nPivotViewComponent.prototype.viewContainerRef;\n/** @type {?} */\nPivotViewComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["CommonModule","NgModule","PivotFieldListComponent","Injector","ViewContainerRef","Renderer2","__metadata","ElementRef","ComponentMixins","ComponentBase","__decorate","ChangeDetectionStrategy","outputs","inputs","Component","PivotFieldList","setValue","twoWays","Pager","Grouping","NumberFormatting","ExcelExport","PDFExport","PivotChart","Toolbar","DrillThrough","VirtualScroll","ConditionalFormatting","CalculatedField","FieldList","GroupingBar","PivotViewComponent","Template","ContentChild","PivotView"],"mappings":"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"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* filename: ej2-angular-pivotview.umd.min.js
|
|
3
|
+
* version : 31.2.5
|
|
4
|
+
* Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
|
|
5
|
+
* Use of this code is subject to the terms of our license.
|
|
6
|
+
* A copy of the current license can be obtained at any time by e-mailing
|
|
7
|
+
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
8
|
+
* applicable laws.
|
|
9
|
+
*/
|
|
10
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@syncfusion/ej2-angular-base"),require("@syncfusion/ej2-pivotview"),require("@angular/common")):"function"==typeof define&&define.amd?define(["exports","@angular/core","@syncfusion/ej2-angular-base","@syncfusion/ej2-pivotview","@angular/common"],t):t(e["ej2-angular-pivotview"]={},e.ng.core,e.ej2.angular.base,e.ej2.pivotview,e.ng.common)}(this,function(e,t,o,i,r){"use strict";var n=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var o in t)t.hasOwnProperty(o)&&(e[o]=t[o])};return function(t,o){function i(){this.constructor=t}e(t,o),t.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),l=this&&this.__decorate||function(e,t,o,i){var r,n=arguments.length,l=n<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,o,i);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(l=(n<3?r(l):n>3?r(t,o,l):r(t,o))||l);return n>3&&l&&Object.defineProperty(t,o,l),l},a=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},d=["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"],c=["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"],s=[];e.PivotViewComponent=function(e){function t(t,i,r,n){var l=e.call(this)||this;l.ngEle=t,l.srenderer=i,l.viewContainerRef=r,l.injector=n,l.element=l.ngEle.nativeElement,l.injectedModules=l.injectedModules||[];try{var a=l.injector.get("PivotViewGroupingBar");-1===l.injectedModules.indexOf(a)&&l.injectedModules.push(a)}catch(d){}try{a=l.injector.get("PivotViewFieldList");-1===l.injectedModules.indexOf(a)&&l.injectedModules.push(a)}catch(p){}try{a=l.injector.get("PivotViewCalculatedField");-1===l.injectedModules.indexOf(a)&&l.injectedModules.push(a)}catch(u){}try{a=l.injector.get("PivotViewConditionalFormatting");-1===l.injectedModules.indexOf(a)&&l.injectedModules.push(a)}catch(g){}try{a=l.injector.get("PivotViewVirtualScroll");-1===l.injectedModules.indexOf(a)&&l.injectedModules.push(a)}catch(m){}try{a=l.injector.get("PivotViewDrillThrough");-1===l.injectedModules.indexOf(a)&&l.injectedModules.push(a)}catch(v){}try{a=l.injector.get("PivotViewToolbar");-1===l.injectedModules.indexOf(a)&&l.injectedModules.push(a)}catch(h){}try{a=l.injector.get("PivotViewPivotChart");-1===l.injectedModules.indexOf(a)&&l.injectedModules.push(a)}catch(f){}try{a=l.injector.get("PivotViewPDFExport");-1===l.injectedModules.indexOf(a)&&l.injectedModules.push(a)}catch(C){}try{a=l.injector.get("PivotViewExcelExport");-1===l.injectedModules.indexOf(a)&&l.injectedModules.push(a)}catch(w){}try{a=l.injector.get("PivotViewNumberFormatting");-1===l.injectedModules.indexOf(a)&&l.injectedModules.push(a)}catch(F){}try{a=l.injector.get("PivotViewGrouping");-1===l.injectedModules.indexOf(a)&&l.injectedModules.push(a)}catch(S){}try{a=l.injector.get("PivotViewPager");-1===l.injectedModules.indexOf(a)&&l.injectedModules.push(a)}catch(R){}return l.registerEvents(c),l.addTwoWay.call(l,s),o.setValue("currentInstance",l,l.viewContainerRef),l.context=new o.ComponentBase,l}return n(t,e),t.prototype.ngOnInit=function(){this.context.ngOnInit(this)},t.prototype.ngAfterViewInit=function(){this.context.ngAfterViewInit(this)},t.prototype.ngOnDestroy=function(){this.context.ngOnDestroy(this)},t.prototype.ngAfterContentChecked=function(){this.context.ngAfterContentChecked(this)},t}(i.PivotView),e.PivotViewComponent.decorators=[{type:t.Component,args:[{selector:"ejs-pivotview",inputs:d,outputs:c,template:"",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{}}]}],e.PivotViewComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.PivotViewComponent.propDecorators={cellTemplate:[{type:t.ContentChild,args:["cellTemplate"]}],tooltipTemplate:[{type:t.ContentChild,args:["tooltipTemplate"]}]},l([o.Template(),a("design:type",Object)],e.PivotViewComponent.prototype,"cellTemplate",void 0),l([o.Template(),a("design:type",Object)],e.PivotViewComponent.prototype,"tooltipTemplate",void 0),e.PivotViewComponent=l([o.ComponentMixins([o.ComponentBase]),a("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.PivotViewComponent);var p=function(){return function(){}}();p.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule],declarations:[e.PivotViewComponent],exports:[e.PivotViewComponent]}]}],p.ctorParameters=function(){return[]};var u={provide:"PivotViewGroupingBar",useValue:i.GroupingBar},g={provide:"PivotViewFieldList",useValue:i.FieldList},m={provide:"PivotViewCalculatedField",useValue:i.CalculatedField},v={provide:"PivotViewConditionalFormatting",useValue:i.ConditionalFormatting},h={provide:"PivotViewVirtualScroll",useValue:i.VirtualScroll},f={provide:"PivotViewDrillThrough",useValue:i.DrillThrough},C={provide:"PivotViewToolbar",useValue:i.Toolbar},w={provide:"PivotViewPivotChart",useValue:i.PivotChart},F={provide:"PivotViewPDFExport",useValue:i.PDFExport},S={provide:"PivotViewExcelExport",useValue:i.ExcelExport},R={provide:"PivotViewNumberFormatting",useValue:i.NumberFormatting},b={provide:"PivotViewGrouping",useValue:i.Grouping},P={provide:"PivotViewPager",useValue:i.Pager},x=function(){return function(){}}();x.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule,p],exports:[p],providers:[u,g,m,v,h,f,C,w,F,S,R,b,P]}]}],x.ctorParameters=function(){return[]};var y=this&&this.__decorate||function(e,t,o,i){var r,n=arguments.length,l=n<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,o,i);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(l=(n<3?r(l):n>3?r(t,o,l):r(t,o))||l);return n>3&&l&&Object.defineProperty(t,o,l),l},T=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},E=["aggregateTypes","allowCalculatedField","allowDeferLayoutUpdate","cssClass","currencyCode","dataSourceSettings","enableFieldSearching","enableHtmlSanitizer","enablePersistence","enableRtl","loadOnDemandInMemberEditor","locale","maxNodeLimitInMemberEditor","renderMode","showValuesButton","spinnerTemplate","target"],V=["actionBegin","actionComplete","actionFailure","afterServiceInvoke","aggregateCellInfo","aggregateMenuOpen","beforeServiceInvoke","calculatedFieldCreate","created","dataBound","destroyed","enginePopulated","enginePopulating","fieldDragStart","fieldDrop","fieldRemove","load","memberEditorOpen","memberFiltering","onFieldDropped","onHeadersSort"],M=[];e.PivotFieldListComponent=function(e){function t(t,i,r,n){var l=e.call(this)||this;l.ngEle=t,l.srenderer=i,l.viewContainerRef=r,l.injector=n,l.element=l.ngEle.nativeElement,l.injectedModules=l.injectedModules||[];try{var a=l.injector.get("PivotViewCalculatedField");-1===l.injectedModules.indexOf(a)&&l.injectedModules.push(a)}catch(d){}return l.registerEvents(V),l.addTwoWay.call(l,M),o.setValue("currentInstance",l,l.viewContainerRef),l.context=new o.ComponentBase,l}return n(t,e),t.prototype.ngOnInit=function(){this.context.ngOnInit(this)},t.prototype.ngAfterViewInit=function(){this.context.ngAfterViewInit(this)},t.prototype.ngOnDestroy=function(){this.context.ngOnDestroy(this)},t.prototype.ngAfterContentChecked=function(){this.context.ngAfterContentChecked(this)},t}(i.PivotFieldList),e.PivotFieldListComponent.decorators=[{type:t.Component,args:[{selector:"ejs-pivotfieldlist",inputs:E,outputs:V,template:"",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{}}]}],e.PivotFieldListComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.PivotFieldListComponent=y([o.ComponentMixins([o.ComponentBase]),T("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.PivotFieldListComponent);var j=function(){return function(){}}();j.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule],declarations:[e.PivotFieldListComponent],exports:[e.PivotFieldListComponent]}]}],j.ctorParameters=function(){return[]};var D=function(){return function(){}}();D.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule,j],exports:[j],providers:[]}]}],D.ctorParameters=function(){return[]},e.PivotViewModule=p,e.PivotViewAllModule=x,e.GroupingBarService=u,e.FieldListService=g,e.CalculatedFieldService=m,e.ConditionalFormattingService=v,e.VirtualScrollService=h,e.DrillThroughService=f,e.ToolbarService=C,e.PivotChartService=w,e.PDFExportService=F,e.ExcelExportService=S,e.NumberFormattingService=R,e.GroupingService=b,e.PagerService=P,e.PivotFieldListModule=j,e.PivotFieldListAllModule=D,e.ɵc=E,e.ɵd=V,e.ɵa=d,e.ɵb=c,e.GroupingBarSettings=i.GroupingBarSettings,e.CellEditSettings=i.CellEditSettings,e.ConditionalSettings=i.ConditionalSettings,e.HyperlinkSettings=i.HyperlinkSettings,e.PageSettings=i.PageSettings,e.PagerSettings=i.PagerSettings,e.DisplayOption=i.DisplayOption,e.VirtualScrollSettings=i.VirtualScrollSettings,e.PivotView=i.PivotView,e.Render=i.Render,e.ExcelExport=i.ExcelExport,e.PDFExport=i.PDFExport,e.KeyboardInteraction=i.KeyboardInteraction,e.VirtualScroll=i.VirtualScroll,e.DrillThrough=i.DrillThrough,e.Pager=i.Pager,e.PivotChart=i.PivotChart,e.PivotFieldList=i.PivotFieldList,e.TreeViewRenderer=i.TreeViewRenderer,e.AxisFieldRenderer=i.AxisFieldRenderer,e.AxisTableRenderer=i.AxisTableRenderer,e.DialogRenderer=i.DialogRenderer,e.EventBase=i.EventBase,e.NodeStateModified=i.NodeStateModified,e.DataSourceUpdate=i.DataSourceUpdate,e.FieldList=i.FieldList,e.CommonKeyboardInteraction=i.CommonKeyboardInteraction,e.Common=i.Common,e.GroupingBar=i.GroupingBar,e.CalculatedField=i.CalculatedField,e.ConditionalFormatting=i.ConditionalFormatting,e.PivotCommon=i.PivotCommon,e.load=i.load,e.enginePopulating=i.enginePopulating,e.enginePopulated=i.enginePopulated,e.onFieldDropped=i.onFieldDropped,e.fieldDrop=i.fieldDrop,e.beforePivotTableRender=i.beforePivotTableRender,e.afterPivotTableRender=i.afterPivotTableRender,e.beforeExport=i.beforeExport,e.exportComplete=i.exportComplete,e.excelHeaderQueryCellInfo=i.excelHeaderQueryCellInfo,e.pdfHeaderQueryCellInfo=i.pdfHeaderQueryCellInfo,e.excelQueryCellInfo=i.excelQueryCellInfo,e.pdfQueryCellInfo=i.pdfQueryCellInfo,e.onPdfCellRender=i.onPdfCellRender,e.dataBound=i.dataBound,e.queryCellInfo=i.queryCellInfo,e.headerCellInfo=i.headerCellInfo,e.hyperlinkCellClick=i.hyperlinkCellClick,e.resizing=i.resizing,e.resizeStop=i.resizeStop,e.cellClick=i.cellClick,e.drillThrough=i.drillThrough,e.beforeColumnsRender=i.beforeColumnsRender,e.selected=i.selected,e.selecting=i.selecting,e.cellSelecting=i.cellSelecting,e.drill=i.drill,e.cellSelected=i.cellSelected,e.cellDeselected=i.cellDeselected,e.rowSelected=i.rowSelected,e.rowDeselected=i.rowDeselected,e.beginDrillThrough=i.beginDrillThrough,e.editCompleted=i.editCompleted,e.multiLevelLabelClick=i.multiLevelLabelClick,e.saveReport=i.saveReport,e.fetchReport=i.fetchReport,e.loadReport=i.loadReport,e.renameReport=i.renameReport,e.removeReport=i.removeReport,e.newReport=i.newReport,e.toolbarRender=i.toolbarRender,e.toolbarClick=i.toolbarClick,e.chartTooltipRender=i.chartTooltipRender,e.chartLegendClick=i.chartLegendClick,e.chartLoaded=i.chartLoaded,e.multiLevelLabelRender=i.multiLevelLabelRender,e.beforePrint=i.beforePrint,e.animationComplete=i.animationComplete,e.legendRender=i.legendRender,e.textRender=i.textRender,e.pointRender=i.pointRender,e.seriesRender=i.seriesRender,e.chartMouseMove=i.chartMouseMove,e.chartMouseClick=i.chartMouseClick,e.pointMove=i.pointMove,e.chartMouseLeave=i.chartMouseLeave,e.chartMouseDown=i.chartMouseDown,e.chartMouseUp=i.chartMouseUp,e.dragComplete=i.dragComplete,e.zoomComplete=i.zoomComplete,e.scrollStart=i.scrollStart,e.scrollEnd=i.scrollEnd,e.scrollChanged=i.scrollChanged,e.chartLoad=i.chartLoad,e.chartResized=i.chartResized,e.chartAxisLabelRender=i.chartAxisLabelRender,e.chartSeriesCreated=i.chartSeriesCreated,e.aggregateCellInfo=i.aggregateCellInfo,e.onHeadersSort=i.onHeadersSort,e.contextMenuClick=i.contextMenuClick,e.contextMenuOpen=i.contextMenuOpen,e.fieldListRefreshed=i.fieldListRefreshed,e.conditionalFormatting=i.conditionalFormatting,e.beforePdfExport=i.beforePdfExport,e.beforeExcelExport=i.beforeExcelExport,e.memberFiltering=i.memberFiltering,e.calculatedFieldCreate=i.calculatedFieldCreate,e.memberEditorOpen=i.memberEditorOpen,e.fieldRemove=i.fieldRemove,e.numberFormatting=i.numberFormatting,e.aggregateMenuOpen=i.aggregateMenuOpen,e.fieldDragStart=i.fieldDragStart,e.chartPointClick=i.chartPointClick,e.beforeServiceInvoke=i.beforeServiceInvoke,e.afterServiceInvoke=i.afterServiceInvoke,e.actionBegin=i.actionBegin,e.actionComplete=i.actionComplete,e.actionFailure=i.actionFailure,e.initialLoad=i.initialLoad,e.uiUpdate=i.uiUpdate,e.scroll=i.scroll,e.verticalScroll=i.verticalScroll,e.horizontalScroll=i.horizontalScroll,e.contentReady=i.contentReady,e.dataReady=i.dataReady,e.initSubComponent=i.initSubComponent,e.treeViewUpdate=i.treeViewUpdate,e.pivotButtonUpdate=i.pivotButtonUpdate,e.initCalculatedField=i.initCalculatedField,e.click=i.click,e.initToolbar=i.initToolbar,e.initPivotPager=i.initPivotPager,e.initFormatting=i.initFormatting,e.initGrouping=i.initGrouping,e.sortValue=i.sortValue,e.drillUp=i.drillUp,e.drillDown=i.drillDown,e.addNewReport=i.addNewReport,e.saveCurrentReport=i.saveCurrentReport,e.saveAsCurrentReport=i.saveAsCurrentReport,e.renameCurrentReport=i.renameCurrentReport,e.removeCurrentReport=i.removeCurrentReport,e.loadReports=i.loadReports,e.openConditionalFormatting=i.openConditionalFormatting,e.openNumberFormatting=i.openNumberFormatting,e.MdxQuery=i.MdxQuery,e.showFieldList=i.showFieldList,e.tableView=i.tableView,e.chartView=i.chartView,e.multipleAxis=i.multipleAxis,e.showLegend=i.showLegend,e.pdfExport=i.pdfExport,e.pngExport=i.pngExport,e.excelExport=i.excelExport,e.csvExport=i.csvExport,e.jpegExport=i.jpegExport,e.svgExport=i.svgExport,e.hideSubTotals=i.hideSubTotals,e.subTotalsRow=i.subTotalsRow,e.subTotalsColumn=i.subTotalsColumn,e.showSubTotals=i.showSubTotals,e.hideGrandTotals=i.hideGrandTotals,e.grandTotalsRow=i.grandTotalsRow,e.grandTotalsColumn=i.grandTotalsColumn,e.showGrandTotals=i.showGrandTotals,e.numberFormattingMenu=i.numberFormattingMenu,e.conditionalFormattingMenu=i.conditionalFormattingMenu,e.reportChange=i.reportChange,e.sortFieldTree=i.sortFieldTree,e.editCalculatedField=i.editCalculatedField,e.sortField=i.sortField,e.filterField=i.filterField,e.removeField=i.removeField,e.openCalculatedField=i.openCalculatedField,e.editRecord=i.editRecord,e.saveEditedRecords=i.saveEditedRecords,e.addNewRecord=i.addNewRecord,e.removeRecord=i.removeRecord,e.aggregateField=i.aggregateField,e.contextMenuCalculatedField=i.contextMenuCalculatedField,e.windowResize=i.windowResize,e.rowPageNavigation=i.rowPageNavigation,e.columnPageNavigation=i.columnPageNavigation,e.calculatedFieldApplied=i.calculatedFieldApplied,e.editedRecordsSaved=i.editedRecordsSaved,e.newRecordAdded=i.newRecordAdded,e.recordRemoved=i.recordRemoved,e.closeFieldlist=i.closeFieldlist,e.fieldTreeSorted=i.fieldTreeSorted,e.reportSaved=i.reportSaved,e.newReportAdded=i.newReportAdded,e.reportReSaved=i.reportReSaved,e.reportRenamed=i.reportRenamed,e.reportRemoved=i.reportRemoved,e.excelExported=i.excelExported,e.csvExported=i.csvExported,e.pdfExported=i.pdfExported,e.pngExported=i.pngExported,e.jpegExported=i.jpegExported,e.svgExported=i.svgExported,e.conditionallyFormatted=i.conditionallyFormatted,e.numberFormatted=i.numberFormatted,e.tableViewed=i.tableViewed,e.chartViewed=i.chartViewed,e.subTotalsHidden=i.subTotalsHidden,e.subTotalsRowShown=i.subTotalsRowShown,e.subTotalsColumnShown=i.subTotalsColumnShown,e.subTotalsShown=i.subTotalsShown,e.grandTotalsHidden=i.grandTotalsHidden,e.grandTotalsRowShown=i.grandTotalsRowShown,e.grandTotalsColumnShown=i.grandTotalsColumnShown,e.grandTotalsShown=i.grandTotalsShown,e.valueSorted=i.valueSorted,e.calculatedFieldEdited=i.calculatedFieldEdited,e.fieldSorted=i.fieldSorted,e.fieldFiltered=i.fieldFiltered,e.fieldRemoved=i.fieldRemoved,e.fieldAggregated=i.fieldAggregated,e.recordEdited=i.recordEdited,e.reportChanged=i.reportChanged,e.windowResized=i.windowResized,e.recordUpdated=i.recordUpdated,e.drillThroughClosed=i.drillThroughClosed,e.verticalScrolled=i.verticalScrolled,e.horizontalScrolled=i.horizontalScrolled,e.rowPageNavigated=i.rowPageNavigated,e.columnPageNavigated=i.columnPageNavigated,e.actionDropped=i.actionDropped,e.invalidFormula=i.invalidFormula,e.axisLabelFont=i.axisLabelFont,e.axisTitleFont=i.axisTitleFont,e.chartTitleFont=i.chartTitleFont,e.chartSubTitleFont=i.chartSubTitleFont,e.crosshairLabelFont=i.crosshairLabelFont,e.tooltipLabelFont=i.tooltipLabelFont,e.legendLabelFont=i.legendLabelFont,e.stripLineLabelFont=i.stripLineLabelFont,e.stockEventFont=i.stockEventFont,e.ErrorDialog=i.ErrorDialog,e.FilterDialog=i.FilterDialog,e.PivotContextMenu=i.PivotContextMenu,e.AggregateMenu=i.AggregateMenu,e.Toolbar=i.Toolbar,e.NumberFormatting=i.NumberFormatting,e.Grouping=i.Grouping,e.PivotEngine=i.PivotEngine,e.PivotUtil=i.PivotUtil,e.OlapEngine=i.OlapEngine,e.MDXQuery=i.MDXQuery,e.FieldOptions=i.FieldOptions,e.FieldListFieldOptions=i.FieldListFieldOptions,e.Style=i.Style,e.Filter=i.Filter,e.ConditionalFormatSettings=i.ConditionalFormatSettings,e.Sort=i.Sort,e.FormatSettings=i.FormatSettings,e.GroupSettings=i.GroupSettings,e.CustomGroups=i.CustomGroups,e.CalculatedFieldSettings=i.CalculatedFieldSettings,e.DrillOptions=i.DrillOptions,e.ValueSortSettings=i.ValueSortSettings,e.Authentication=i.Authentication,e.DataSourceSettings=i.DataSourceSettings,Object.defineProperty(e,"__esModule",{value:!0})});
|
|
11
|
+
//# sourceMappingURL=ej2-angular-pivotview.umd.min.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ej2-angular-pivotview.umd.min.js","sources":["~/@syncfusion/ej2-angular-pivotview/src/pivotview/pivotview.component.ts","~/@syncfusion/ej2-angular-pivotview/src/pivotview/pivotview.module.ts","~/@syncfusion/ej2-angular-pivotview/src/pivotview/pivotview-all.module.ts","~/@syncfusion/ej2-angular-pivotview/src/pivotfieldlist/pivotfieldlist.component.ts","~/@syncfusion/ej2-angular-pivotview/src/pivotfieldlist/pivotfieldlist.module.ts","~/@syncfusion/ej2-angular-pivotview/src/pivotfieldlist/pivotfieldlist-all.module.ts"],"sourcesContent":["import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { PivotView } from '@syncfusion/ej2-pivotview';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nexport const /** @type {?} */ inputs: string[] = ['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'];\nexport const /** @type {?} */ outputs: string[] = ['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'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * `ej-pivotview` represents the Angular Pivot Table Component.\n * ```html\n * <ej-pivotview></ej-pivotview>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class PivotViewComponent extends PivotView implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tafterServiceInvoke: any;\n\taggregateCellInfo: any;\n\taggregateMenuOpen: any;\n\tbeforeExport: any;\n\tbeforeServiceInvoke: any;\n\tbeginDrillThrough: any;\n\tcalculatedFieldCreate: any;\n\tcellClick: any;\n\tcellSelected: any;\n\tcellSelecting: any;\n\tchartSeriesCreated: any;\n\tconditionalFormatting: any;\n\tcreated: any;\n\tdataBound: any;\n\tdestroyed: any;\n\tdrill: any;\n\tdrillThrough: any;\n\teditCompleted: any;\n\tenginePopulated: any;\n\tenginePopulating: any;\n\texportComplete: any;\n\tfetchReport: any;\n\tfieldDragStart: any;\n\tfieldDrop: any;\n\tfieldListRefreshed: any;\n\tfieldRemove: any;\n\thyperlinkCellClick: any;\n\tload: any;\n\tloadReport: any;\n\tmemberEditorOpen: any;\n\tmemberFiltering: any;\n\tnewReport: any;\n\tnumberFormatting: any;\n\tonFieldDropped: any;\n\tonHeadersSort: any;\n\tonPdfCellRender: any;\n\tremoveReport: any;\n\trenameReport: any;\n\tsaveReport: any;\n\ttoolbarClick: any;\npublic toolbarRender: any;\n/**\n * Allows the table cell elements to be customized with either an HTML string or the element’s ID, \n * that can be used to add additional HTML elements with custom formats to the cell elements that are displayed in the pivot table.\n * \\@default null\n * \\@asptype string\n */\n@Template()\n public cellTemplate: any;\n/**\n * Allows the tooltip element to be customized with either an HTML string or the element’s ID, \n * can be used to displayed with custom formats either by mouse hovering or by touch in the pivot table.\n * \\@default null\n * \\@asptype string\n */\n@Template()\n public tooltipTemplate: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('PivotViewGroupingBar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewFieldList');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewCalculatedField');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewConditionalFormatting');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewVirtualScroll');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewDrillThrough');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewPivotChart');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewPDFExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewExcelExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewNumberFormatting');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewGrouping');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PivotViewPager');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-pivotview',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'cellTemplate': [{ type: ContentChild, args: ['cellTemplate', ] },],\n'tooltipTemplate': [{ type: ContentChild, args: ['tooltipTemplate', ] },],\n};\n}\n\nfunction PivotViewComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nPivotViewComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPivotViewComponent.ctorParameters;\n/** @type {?} */\nPivotViewComponent.propDecorators;\n/** @type {?} */\nPivotViewComponent.prototype.context;\n/** @type {?} */\nPivotViewComponent.prototype.tagObjects;\n/** @type {?} */\nPivotViewComponent.prototype.actionBegin;\n/** @type {?} */\nPivotViewComponent.prototype.actionComplete;\n/** @type {?} */\nPivotViewComponent.prototype.actionFailure;\n/** @type {?} */\nPivotViewComponent.prototype.afterServiceInvoke;\n/** @type {?} */\nPivotViewComponent.prototype.aggregateCellInfo;\n/** @type {?} */\nPivotViewComponent.prototype.aggregateMenuOpen;\n/** @type {?} */\nPivotViewComponent.prototype.beforeExport;\n/** @type {?} */\nPivotViewComponent.prototype.beforeServiceInvoke;\n/** @type {?} */\nPivotViewComponent.prototype.beginDrillThrough;\n/** @type {?} */\nPivotViewComponent.prototype.calculatedFieldCreate;\n/** @type {?} */\nPivotViewComponent.prototype.cellClick;\n/** @type {?} */\nPivotViewComponent.prototype.cellSelected;\n/** @type {?} */\nPivotViewComponent.prototype.cellSelecting;\n/** @type {?} */\nPivotViewComponent.prototype.chartSeriesCreated;\n/** @type {?} */\nPivotViewComponent.prototype.conditionalFormatting;\n/** @type {?} */\nPivotViewComponent.prototype.created;\n/** @type {?} */\nPivotViewComponent.prototype.dataBound;\n/** @type {?} */\nPivotViewComponent.prototype.destroyed;\n/** @type {?} */\nPivotViewComponent.prototype.drill;\n/** @type {?} */\nPivotViewComponent.prototype.drillThrough;\n/** @type {?} */\nPivotViewComponent.prototype.editCompleted;\n/** @type {?} */\nPivotViewComponent.prototype.enginePopulated;\n/** @type {?} */\nPivotViewComponent.prototype.enginePopulating;\n/** @type {?} */\nPivotViewComponent.prototype.exportComplete;\n/** @type {?} */\nPivotViewComponent.prototype.fetchReport;\n/** @type {?} */\nPivotViewComponent.prototype.fieldDragStart;\n/** @type {?} */\nPivotViewComponent.prototype.fieldDrop;\n/** @type {?} */\nPivotViewComponent.prototype.fieldListRefreshed;\n/** @type {?} */\nPivotViewComponent.prototype.fieldRemove;\n/** @type {?} */\nPivotViewComponent.prototype.hyperlinkCellClick;\n/** @type {?} */\nPivotViewComponent.prototype.load;\n/** @type {?} */\nPivotViewComponent.prototype.loadReport;\n/** @type {?} */\nPivotViewComponent.prototype.memberEditorOpen;\n/** @type {?} */\nPivotViewComponent.prototype.memberFiltering;\n/** @type {?} */\nPivotViewComponent.prototype.newReport;\n/** @type {?} */\nPivotViewComponent.prototype.numberFormatting;\n/** @type {?} */\nPivotViewComponent.prototype.onFieldDropped;\n/** @type {?} */\nPivotViewComponent.prototype.onHeadersSort;\n/** @type {?} */\nPivotViewComponent.prototype.onPdfCellRender;\n/** @type {?} */\nPivotViewComponent.prototype.removeReport;\n/** @type {?} */\nPivotViewComponent.prototype.renameReport;\n/** @type {?} */\nPivotViewComponent.prototype.saveReport;\n/** @type {?} */\nPivotViewComponent.prototype.toolbarClick;\n/** @type {?} */\nPivotViewComponent.prototype.toolbarRender;\n/**\n * Allows the table cell elements to be customized with either an HTML string or the element’s ID, \n * that can be used to add additional HTML elements with custom formats to the cell elements that are displayed in the pivot table.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nPivotViewComponent.prototype.cellTemplate;\n/**\n * Allows the tooltip element to be customized with either an HTML string or the element’s ID, \n * can be used to displayed with custom formats either by mouse hovering or by touch in the pivot table.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nPivotViewComponent.prototype.tooltipTemplate;\n/** @type {?} */\nPivotViewComponent.prototype.registerEvents;\n/** @type {?} */\nPivotViewComponent.prototype.addTwoWay;\n/** @type {?} */\nPivotViewComponent.prototype.ngEle;\n/** @type {?} */\nPivotViewComponent.prototype.srenderer;\n/** @type {?} */\nPivotViewComponent.prototype.viewContainerRef;\n/** @type {?} */\nPivotViewComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PivotViewComponent } from './pivotview.component';\n/**\n * NgModule definition for the PivotView component.\n */\nexport class PivotViewModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n PivotViewComponent\n ],\n exports: [\n PivotViewComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PivotViewModule_tsickle_Closure_declarations() {\n/** @type {?} */\nPivotViewModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPivotViewModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PivotViewComponent } from './pivotview.component';\nimport { PivotViewModule } from './pivotview.module';\nimport {GroupingBar, FieldList, CalculatedField, ConditionalFormatting, VirtualScroll, DrillThrough, Toolbar, PivotChart, PDFExport, ExcelExport, NumberFormatting, Grouping, Pager} from '@syncfusion/ej2-pivotview';\n\n\nexport const /** @type {?} */ GroupingBarService: ValueProvider = { provide: 'PivotViewGroupingBar', useValue: GroupingBar};\nexport const /** @type {?} */ FieldListService: ValueProvider = { provide: 'PivotViewFieldList', useValue: FieldList};\nexport const /** @type {?} */ CalculatedFieldService: ValueProvider = { provide: 'PivotViewCalculatedField', useValue: CalculatedField};\nexport const /** @type {?} */ ConditionalFormattingService: ValueProvider = { provide: 'PivotViewConditionalFormatting', useValue: ConditionalFormatting};\nexport const /** @type {?} */ VirtualScrollService: ValueProvider = { provide: 'PivotViewVirtualScroll', useValue: VirtualScroll};\nexport const /** @type {?} */ DrillThroughService: ValueProvider = { provide: 'PivotViewDrillThrough', useValue: DrillThrough};\nexport const /** @type {?} */ ToolbarService: ValueProvider = { provide: 'PivotViewToolbar', useValue: Toolbar};\nexport const /** @type {?} */ PivotChartService: ValueProvider = { provide: 'PivotViewPivotChart', useValue: PivotChart};\nexport const /** @type {?} */ PDFExportService: ValueProvider = { provide: 'PivotViewPDFExport', useValue: PDFExport};\nexport const /** @type {?} */ ExcelExportService: ValueProvider = { provide: 'PivotViewExcelExport', useValue: ExcelExport};\nexport const /** @type {?} */ NumberFormattingService: ValueProvider = { provide: 'PivotViewNumberFormatting', useValue: NumberFormatting};\nexport const /** @type {?} */ GroupingService: ValueProvider = { provide: 'PivotViewGrouping', useValue: Grouping};\nexport const /** @type {?} */ PagerService: ValueProvider = { provide: 'PivotViewPager', useValue: Pager};\n/**\n * NgModule definition for the PivotView component with providers.\n */\nexport class PivotViewAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, PivotViewModule],\n exports: [\n PivotViewModule\n ],\n providers:[\n GroupingBarService,\n FieldListService,\n CalculatedFieldService,\n ConditionalFormattingService,\n VirtualScrollService,\n DrillThroughService,\n ToolbarService,\n PivotChartService,\n PDFExportService,\n ExcelExportService,\n NumberFormattingService,\n GroupingService,\n PagerService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PivotViewAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nPivotViewAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPivotViewAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { PivotFieldList } from '@syncfusion/ej2-pivotview';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['aggregateTypes','allowCalculatedField','allowDeferLayoutUpdate','cssClass','currencyCode','dataSourceSettings','enableFieldSearching','enableHtmlSanitizer','enablePersistence','enableRtl','loadOnDemandInMemberEditor','locale','maxNodeLimitInMemberEditor','renderMode','showValuesButton','spinnerTemplate','target'];\nexport const /** @type {?} */ outputs: string[] = ['actionBegin','actionComplete','actionFailure','afterServiceInvoke','aggregateCellInfo','aggregateMenuOpen','beforeServiceInvoke','calculatedFieldCreate','created','dataBound','destroyed','enginePopulated','enginePopulating','fieldDragStart','fieldDrop','fieldRemove','load','memberEditorOpen','memberFiltering','onFieldDropped','onHeadersSort'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * `ej-pivotfieldlist` represents the Angular PivotFieldList Component.\n * ```html\n * <ej-pivotfieldlist></ej-pivotfieldlist>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class PivotFieldListComponent extends PivotFieldList implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tafterServiceInvoke: any;\n\taggregateCellInfo: any;\n\taggregateMenuOpen: any;\n\tbeforeServiceInvoke: any;\n\tcalculatedFieldCreate: any;\n\tcreated: any;\n\tdataBound: any;\n\tdestroyed: any;\n\tenginePopulated: any;\n\tenginePopulating: any;\n\tfieldDragStart: any;\n\tfieldDrop: any;\n\tfieldRemove: any;\n\tload: any;\n\tmemberEditorOpen: any;\n\tmemberFiltering: any;\n\tonFieldDropped: any;\npublic onHeadersSort: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('PivotViewCalculatedField');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-pivotfieldlist',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction PivotFieldListComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nPivotFieldListComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPivotFieldListComponent.ctorParameters;\n/** @type {?} */\nPivotFieldListComponent.prototype.context;\n/** @type {?} */\nPivotFieldListComponent.prototype.tagObjects;\n/** @type {?} */\nPivotFieldListComponent.prototype.actionBegin;\n/** @type {?} */\nPivotFieldListComponent.prototype.actionComplete;\n/** @type {?} */\nPivotFieldListComponent.prototype.actionFailure;\n/** @type {?} */\nPivotFieldListComponent.prototype.afterServiceInvoke;\n/** @type {?} */\nPivotFieldListComponent.prototype.aggregateCellInfo;\n/** @type {?} */\nPivotFieldListComponent.prototype.aggregateMenuOpen;\n/** @type {?} */\nPivotFieldListComponent.prototype.beforeServiceInvoke;\n/** @type {?} */\nPivotFieldListComponent.prototype.calculatedFieldCreate;\n/** @type {?} */\nPivotFieldListComponent.prototype.created;\n/** @type {?} */\nPivotFieldListComponent.prototype.dataBound;\n/** @type {?} */\nPivotFieldListComponent.prototype.destroyed;\n/** @type {?} */\nPivotFieldListComponent.prototype.enginePopulated;\n/** @type {?} */\nPivotFieldListComponent.prototype.enginePopulating;\n/** @type {?} */\nPivotFieldListComponent.prototype.fieldDragStart;\n/** @type {?} */\nPivotFieldListComponent.prototype.fieldDrop;\n/** @type {?} */\nPivotFieldListComponent.prototype.fieldRemove;\n/** @type {?} */\nPivotFieldListComponent.prototype.load;\n/** @type {?} */\nPivotFieldListComponent.prototype.memberEditorOpen;\n/** @type {?} */\nPivotFieldListComponent.prototype.memberFiltering;\n/** @type {?} */\nPivotFieldListComponent.prototype.onFieldDropped;\n/** @type {?} */\nPivotFieldListComponent.prototype.onHeadersSort;\n/** @type {?} */\nPivotFieldListComponent.prototype.registerEvents;\n/** @type {?} */\nPivotFieldListComponent.prototype.addTwoWay;\n/** @type {?} */\nPivotFieldListComponent.prototype.ngEle;\n/** @type {?} */\nPivotFieldListComponent.prototype.srenderer;\n/** @type {?} */\nPivotFieldListComponent.prototype.viewContainerRef;\n/** @type {?} */\nPivotFieldListComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PivotFieldListComponent } from './pivotfieldlist.component';\n/**\n * NgModule definition for the PivotFieldList component.\n */\nexport class PivotFieldListModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n PivotFieldListComponent\n ],\n exports: [\n PivotFieldListComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PivotFieldListModule_tsickle_Closure_declarations() {\n/** @type {?} */\nPivotFieldListModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPivotFieldListModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PivotFieldListComponent } from './pivotfieldlist.component';\nimport { PivotFieldListModule } from './pivotfieldlist.module';\n/**\n * NgModule definition for the PivotFieldList component with providers.\n */\nexport class PivotFieldListAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, PivotFieldListModule],\n exports: [\n PivotFieldListModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PivotFieldListAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nPivotFieldListAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPivotFieldListAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["inputs","outputs","twoWays","exports","PivotViewComponent","_super","ngEle","srenderer","viewContainerRef","injector","_this","call","this","element","nativeElement","injectedModules","mod","get","indexOf","push","_a","_b","_c","_d","_e","_f","_g","_h","_j","_k","_l","_m","_o","registerEvents","addTwoWay","setValue","context","ComponentBase","__extends","prototype","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","PivotView","decorators","type","Component","args","selector","template","changeDetection","ChangeDetectionStrategy","OnPush","queries","ctorParameters","ElementRef","Renderer2","ViewContainerRef","Injector","propDecorators","cellTemplate","ContentChild","tooltipTemplate","__decorate","Template","ComponentMixins","__metadata","PivotViewModule","NgModule","imports","CommonModule","declarations","GroupingBarService","provide","useValue","GroupingBar","FieldListService","FieldList","CalculatedFieldService","CalculatedField","ConditionalFormattingService","ConditionalFormatting","VirtualScrollService","VirtualScroll","DrillThroughService","DrillThrough","ToolbarService","Toolbar","PivotChartService","PivotChart","PDFExportService","PDFExport","ExcelExportService","ExcelExport","NumberFormattingService","NumberFormatting","GroupingService","Grouping","PagerService","Pager","PivotViewAllModule","providers","PivotFieldListComponent","PivotFieldList","PivotFieldListModule","PivotFieldListAllModule"],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"__symbolic":"module","version":3,"exports":[{"from":"@syncfusion/ej2-pivotview"}],"metadata":{"ɵa":["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"],"ɵb":["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"],"ɵc":["aggregateTypes","allowCalculatedField","allowDeferLayoutUpdate","cssClass","currencyCode","dataSourceSettings","enableFieldSearching","enableHtmlSanitizer","enablePersistence","enableRtl","loadOnDemandInMemberEditor","locale","maxNodeLimitInMemberEditor","renderMode","showValuesButton","spinnerTemplate","target"],"ɵd":["actionBegin","actionComplete","actionFailure","afterServiceInvoke","aggregateCellInfo","aggregateMenuOpen","beforeServiceInvoke","calculatedFieldCreate","created","dataBound","destroyed","enginePopulated","enginePopulating","fieldDragStart","fieldDrop","fieldRemove","load","memberEditorOpen","memberFiltering","onFieldDropped","onHeadersSort"],"PivotViewComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-pivotview","name":"PivotView"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-pivotview","inputs":{"__symbolic":"reference","name":"ɵa"},"outputs":{"__symbolic":"reference","name":"ɵb"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"queries":{}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"}]]}],"members":{"cellTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["cellTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"tooltipTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["tooltipTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2"},{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"PivotViewModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"PivotViewComponent"}],"exports":[{"__symbolic":"reference","name":"PivotViewComponent"}]}]}],"members":{}},"PivotViewAllModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"},{"__symbolic":"reference","name":"PivotViewModule"}],"exports":[{"__symbolic":"reference","name":"PivotViewModule"}],"providers":[{"__symbolic":"reference","name":"GroupingBarService"},{"__symbolic":"reference","name":"FieldListService"},{"__symbolic":"reference","name":"CalculatedFieldService"},{"__symbolic":"reference","name":"ConditionalFormattingService"},{"__symbolic":"reference","name":"VirtualScrollService"},{"__symbolic":"reference","name":"DrillThroughService"},{"__symbolic":"reference","name":"ToolbarService"},{"__symbolic":"reference","name":"PivotChartService"},{"__symbolic":"reference","name":"PDFExportService"},{"__symbolic":"reference","name":"ExcelExportService"},{"__symbolic":"reference","name":"NumberFormattingService"},{"__symbolic":"reference","name":"GroupingService"},{"__symbolic":"reference","name":"PagerService"}]}]}],"members":{}},"GroupingBarService":{"provide":"PivotViewGroupingBar","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-pivotview","name":"GroupingBar"}},"FieldListService":{"provide":"PivotViewFieldList","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-pivotview","name":"FieldList"}},"CalculatedFieldService":{"provide":"PivotViewCalculatedField","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-pivotview","name":"CalculatedField"}},"ConditionalFormattingService":{"provide":"PivotViewConditionalFormatting","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-pivotview","name":"ConditionalFormatting"}},"VirtualScrollService":{"provide":"PivotViewVirtualScroll","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-pivotview","name":"VirtualScroll"}},"DrillThroughService":{"provide":"PivotViewDrillThrough","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-pivotview","name":"DrillThrough"}},"ToolbarService":{"provide":"PivotViewToolbar","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-pivotview","name":"Toolbar"}},"PivotChartService":{"provide":"PivotViewPivotChart","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-pivotview","name":"PivotChart"}},"PDFExportService":{"provide":"PivotViewPDFExport","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-pivotview","name":"PDFExport"}},"ExcelExportService":{"provide":"PivotViewExcelExport","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-pivotview","name":"ExcelExport"}},"NumberFormattingService":{"provide":"PivotViewNumberFormatting","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-pivotview","name":"NumberFormatting"}},"GroupingService":{"provide":"PivotViewGrouping","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-pivotview","name":"Grouping"}},"PagerService":{"provide":"PivotViewPager","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-pivotview","name":"Pager"}},"PivotFieldListComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-pivotview","name":"PivotFieldList"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-pivotfieldlist","inputs":{"__symbolic":"reference","name":"ɵc"},"outputs":{"__symbolic":"reference","name":"ɵd"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"queries":{}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"}]]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2"},{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"PivotFieldListModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"PivotFieldListComponent"}],"exports":[{"__symbolic":"reference","name":"PivotFieldListComponent"}]}]}],"members":{}},"PivotFieldListAllModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"},{"__symbolic":"reference","name":"PivotFieldListModule"}],"exports":[{"__symbolic":"reference","name":"PivotFieldListModule"}],"providers":[]}]}],"members":{}}},"origins":{"ɵa":"./src/pivotview/pivotview.component","ɵb":"./src/pivotview/pivotview.component","ɵc":"./src/pivotfieldlist/pivotfieldlist.component","ɵd":"./src/pivotfieldlist/pivotfieldlist.component","PivotViewComponent":"./src/pivotview/pivotview.component","PivotViewModule":"./src/pivotview/pivotview.module","PivotViewAllModule":"./src/pivotview/pivotview-all.module","GroupingBarService":"./src/pivotview/pivotview-all.module","FieldListService":"./src/pivotview/pivotview-all.module","CalculatedFieldService":"./src/pivotview/pivotview-all.module","ConditionalFormattingService":"./src/pivotview/pivotview-all.module","VirtualScrollService":"./src/pivotview/pivotview-all.module","DrillThroughService":"./src/pivotview/pivotview-all.module","ToolbarService":"./src/pivotview/pivotview-all.module","PivotChartService":"./src/pivotview/pivotview-all.module","PDFExportService":"./src/pivotview/pivotview-all.module","ExcelExportService":"./src/pivotview/pivotview-all.module","NumberFormattingService":"./src/pivotview/pivotview-all.module","GroupingService":"./src/pivotview/pivotview-all.module","PagerService":"./src/pivotview/pivotview-all.module","PivotFieldListComponent":"./src/pivotfieldlist/pivotfieldlist.component","PivotFieldListModule":"./src/pivotfieldlist/pivotfieldlist.module","PivotFieldListAllModule":"./src/pivotfieldlist/pivotfieldlist-all.module"},"importAs":"@syncfusion/ej2-angular-pivotview"}
|
package/package.json
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-angular-pivotview",
|
|
3
|
-
"version": "31.2.
|
|
3
|
+
"version": "31.2.5-ngcc",
|
|
4
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
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
7
7
|
"schematics": "./schematics/collection.json",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@syncfusion/ej2-base": "~31.2.
|
|
9
|
+
"@syncfusion/ej2-base": "~31.2.5",
|
|
10
10
|
"@syncfusion/ej2-angular-base": "~31.2.2",
|
|
11
|
-
"@syncfusion/ej2-pivotview": "31.2.
|
|
11
|
+
"@syncfusion/ej2-pivotview": "31.2.5"
|
|
12
12
|
},
|
|
13
|
+
"devDependencies": {},
|
|
13
14
|
"keywords": [
|
|
14
15
|
"angular",
|
|
15
16
|
"angular-pivotview"
|
|
@@ -19,24 +20,10 @@
|
|
|
19
20
|
"url": "https://github.com/syncfusion/ej2-angular-ui-components.git"
|
|
20
21
|
},
|
|
21
22
|
"sideEffects": false,
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"typings": "syncfusion-ej2-angular-pivotview.d.ts",
|
|
28
|
-
"exports": {
|
|
29
|
-
"./package.json": {
|
|
30
|
-
"default": "./package.json"
|
|
31
|
-
},
|
|
32
|
-
".": {
|
|
33
|
-
"types": "./syncfusion-ej2-angular-pivotview.d.ts",
|
|
34
|
-
"esm2020": "./esm2020/syncfusion-ej2-angular-pivotview.mjs",
|
|
35
|
-
"es2020": "./fesm2020/syncfusion-ej2-angular-pivotview.mjs",
|
|
36
|
-
"es2015": "./fesm2015/syncfusion-ej2-angular-pivotview.mjs",
|
|
37
|
-
"node": "./fesm2015/syncfusion-ej2-angular-pivotview.mjs",
|
|
38
|
-
"default": "./fesm2020/syncfusion-ej2-angular-pivotview.mjs"
|
|
39
|
-
}
|
|
40
|
-
},
|
|
23
|
+
"main": "dist/ej2-angular-pivotview.umd.js",
|
|
24
|
+
"module": "@syncfusion/ej2-angular-pivotview.es5.js",
|
|
25
|
+
"es2015": "@syncfusion/ej2-angular-pivotview.js",
|
|
26
|
+
"typings": "ej2-angular-pivotview.d.ts",
|
|
27
|
+
"metadata": "ej2-angular-pivotview.metadata.json",
|
|
41
28
|
"homepage": "https://www.syncfusion.com/angular-components"
|
|
42
29
|
}
|
package/public_api.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './src/index';
|
|
1
|
+
export * from './src/index';
|
|
@@ -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 = '^31.2.
|
|
4
|
+
exports.pkgVer = '^31.2.5';
|
|
5
5
|
exports.moduleName = 'PivotViewModule, PivotFieldListModule';
|
|
6
|
-
exports.themeVer = '~31.2.
|
|
6
|
+
exports.themeVer = '~31.2.5';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export const pkgName = '@syncfusion/ej2-angular-pivotview';
|
|
2
|
-
export const pkgVer = '^31.2.
|
|
2
|
+
export const pkgVer = '^31.2.5';
|
|
3
3
|
export const moduleName = 'PivotViewModule, PivotFieldListModule';
|
|
4
|
-
export const themeVer = '~31.2.
|
|
4
|
+
export const themeVer = '~31.2.5';
|
package/src/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { PivotViewComponent } from './pivotview/pivotview.component';
|
|
2
|
-
export { PivotViewModule } from './pivotview/pivotview.module';
|
|
3
|
-
export { PivotViewAllModule, GroupingBarService, FieldListService, CalculatedFieldService, ConditionalFormattingService, VirtualScrollService, DrillThroughService, ToolbarService, PivotChartService, PDFExportService, ExcelExportService, NumberFormattingService, GroupingService, PagerService } from './pivotview/pivotview-all.module';
|
|
4
|
-
export { PivotFieldListComponent } from './pivotfieldlist/pivotfieldlist.component';
|
|
5
|
-
export { PivotFieldListModule } from './pivotfieldlist/pivotfieldlist.module';
|
|
6
|
-
export { PivotFieldListAllModule } from './pivotfieldlist/pivotfieldlist-all.module';
|
|
7
|
-
export * from '@syncfusion/ej2-pivotview';
|
|
1
|
+
export { PivotViewComponent } from './pivotview/pivotview.component';
|
|
2
|
+
export { PivotViewModule } from './pivotview/pivotview.module';
|
|
3
|
+
export { PivotViewAllModule, GroupingBarService, FieldListService, CalculatedFieldService, ConditionalFormattingService, VirtualScrollService, DrillThroughService, ToolbarService, PivotChartService, PDFExportService, ExcelExportService, NumberFormattingService, GroupingService, PagerService } from './pivotview/pivotview-all.module';
|
|
4
|
+
export { PivotFieldListComponent } from './pivotfieldlist/pivotfieldlist.component';
|
|
5
|
+
export { PivotFieldListModule } from './pivotfieldlist/pivotfieldlist.module';
|
|
6
|
+
export { PivotFieldListAllModule } from './pivotfieldlist/pivotfieldlist-all.module';
|
|
7
|
+
export * from '@syncfusion/ej2-pivotview';
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
*/
|
|
7
|
-
export declare class PivotFieldListAllModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PivotFieldListAllModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PivotFieldListAllModule, never, [typeof i1.CommonModule, typeof i2.PivotFieldListModule], [typeof i2.PivotFieldListModule]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<PivotFieldListAllModule>;
|
|
11
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* NgModule definition for the PivotFieldList component with providers.
|
|
3
|
+
*/
|
|
4
|
+
export declare class PivotFieldListAllModule {
|
|
5
|
+
}
|
|
@@ -1,51 +1,48 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { PivotFieldList } 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
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PivotFieldListComponent, never>;
|
|
50
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PivotFieldListComponent, "ejs-pivotfieldlist", never, { "aggregateTypes": "aggregateTypes"; "allowCalculatedField": "allowCalculatedField"; "allowDeferLayoutUpdate": "allowDeferLayoutUpdate"; "cssClass": "cssClass"; "currencyCode": "currencyCode"; "dataSourceSettings": "dataSourceSettings"; "enableFieldSearching": "enableFieldSearching"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "loadOnDemandInMemberEditor": "loadOnDemandInMemberEditor"; "locale": "locale"; "maxNodeLimitInMemberEditor": "maxNodeLimitInMemberEditor"; "renderMode": "renderMode"; "showValuesButton": "showValuesButton"; "spinnerTemplate": "spinnerTemplate"; "target": "target"; }, { "actionBegin": "actionBegin"; "actionComplete": "actionComplete"; "actionFailure": "actionFailure"; "afterServiceInvoke": "afterServiceInvoke"; "aggregateCellInfo": "aggregateCellInfo"; "aggregateMenuOpen": "aggregateMenuOpen"; "beforeServiceInvoke": "beforeServiceInvoke"; "calculatedFieldCreate": "calculatedFieldCreate"; "created": "created"; "dataBound": "dataBound"; "destroyed": "destroyed"; "enginePopulated": "enginePopulated"; "enginePopulating": "enginePopulating"; "fieldDragStart": "fieldDragStart"; "fieldDrop": "fieldDrop"; "fieldRemove": "fieldRemove"; "load": "load"; "memberEditorOpen": "memberEditorOpen"; "memberFiltering": "memberFiltering"; "onFieldDropped": "onFieldDropped"; "onHeadersSort": "onHeadersSort"; }, never, never>;
|
|
51
|
-
}
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { PivotFieldList } 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-pivotfieldlist` represents the Angular PivotFieldList Component.
|
|
9
|
+
* ```html
|
|
10
|
+
* <ej-pivotfieldlist></ej-pivotfieldlist>
|
|
11
|
+
* ```
|
|
12
|
+
*/
|
|
13
|
+
export declare class PivotFieldListComponent extends PivotFieldList 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
|
+
beforeServiceInvoke: any;
|
|
27
|
+
calculatedFieldCreate: any;
|
|
28
|
+
created: any;
|
|
29
|
+
dataBound: any;
|
|
30
|
+
destroyed: any;
|
|
31
|
+
enginePopulated: any;
|
|
32
|
+
enginePopulating: any;
|
|
33
|
+
fieldDragStart: any;
|
|
34
|
+
fieldDrop: any;
|
|
35
|
+
fieldRemove: any;
|
|
36
|
+
load: any;
|
|
37
|
+
memberEditorOpen: any;
|
|
38
|
+
memberFiltering: any;
|
|
39
|
+
onFieldDropped: any;
|
|
40
|
+
onHeadersSort: any;
|
|
41
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
42
|
+
ngOnInit(): void;
|
|
43
|
+
ngAfterViewInit(): void;
|
|
44
|
+
ngOnDestroy(): void;
|
|
45
|
+
ngAfterContentChecked(): void;
|
|
46
|
+
registerEvents: (eventList: string[]) => void;
|
|
47
|
+
addTwoWay: (propList: string[]) => void;
|
|
48
|
+
}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
*/
|
|
7
|
-
export declare class PivotFieldListModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PivotFieldListModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PivotFieldListModule, [typeof i1.PivotFieldListComponent], [typeof i2.CommonModule], [typeof i1.PivotFieldListComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<PivotFieldListModule>;
|
|
11
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* NgModule definition for the PivotFieldList component.
|
|
3
|
+
*/
|
|
4
|
+
export declare class PivotFieldListModule {
|
|
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
|
+
}
|