@syncfusion/ej2-pivotview
Advanced tools
Comparing version 22.2.7 to 22.2.8
@@ -9,2 +9,12 @@ # Changelog | ||
- `I485463` - The pivot table can now be properly rendered when sorting is applied with virtualization. | ||
- `I486436` - The pivot chart can now be properly rendered with remote data binding. | ||
- `F183726` - The "multiLevelLabelRender" event will now work properly in the Angular pivot table. | ||
## 22.2.7 (2023-08-02) | ||
### Pivot Table | ||
#### Bug fixes | ||
- `I459099` - The pivot table can now be rendered properly with the reordering feature. | ||
@@ -11,0 +21,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 22.2.7 | ||
* version : 22.2.8 | ||
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"_from": "@syncfusion/ej2-pivotview@*", | ||
"_id": "@syncfusion/ej2-pivotview@22.2.5", | ||
"_id": "@syncfusion/ej2-pivotview@22.2.7", | ||
"_inBundle": false, | ||
"_integrity": "sha512-1+HB7RleroNqu2dfh8wAlSjsFK9QEnVoOHlDYAx54Y47Ulrp0FEjFknU2Gm/typPulk3ic0k0JPNZkH25HoSWQ==", | ||
"_integrity": "sha512-v3Ub1V2wM3u2KcO0RxCilC3bADrc1ZKcRrKZrVkmrkji4aZUIKXgg9EO24P/KXV4IxkB+Clw4cPXoCaZ8+byVw==", | ||
"_location": "/@syncfusion/ej2-pivotview", | ||
@@ -26,4 +26,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-pivotview/-/ej2-pivotview-22.2.5.tgz", | ||
"_shasum": "ba59e2f87ca65d907ebf05374a3d19d01b382f02", | ||
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-pivotview/-/ej2-pivotview-22.2.7.tgz", | ||
"_shasum": "0d5eab5f26262a9c5c5ee045bae48ea2ed1cc240", | ||
"_spec": "@syncfusion/ej2-pivotview@*", | ||
@@ -40,18 +40,18 @@ "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included", | ||
"@syncfusion/ej2-base": "~22.2.5", | ||
"@syncfusion/ej2-buttons": "~22.2.5", | ||
"@syncfusion/ej2-calendars": "~22.2.5", | ||
"@syncfusion/ej2-charts": "~22.2.7", | ||
"@syncfusion/ej2-buttons": "~22.2.8", | ||
"@syncfusion/ej2-calendars": "~22.2.8", | ||
"@syncfusion/ej2-charts": "~22.2.8", | ||
"@syncfusion/ej2-compression": "~22.2.5", | ||
"@syncfusion/ej2-data": "~22.2.5", | ||
"@syncfusion/ej2-dropdowns": "~22.2.5", | ||
"@syncfusion/ej2-dropdowns": "~22.2.8", | ||
"@syncfusion/ej2-excel-export": "~22.2.5", | ||
"@syncfusion/ej2-file-utils": "~22.2.5", | ||
"@syncfusion/ej2-grids": "~22.2.7", | ||
"@syncfusion/ej2-grids": "~22.2.8", | ||
"@syncfusion/ej2-inputs": "~22.2.7", | ||
"@syncfusion/ej2-lists": "~22.2.5", | ||
"@syncfusion/ej2-navigations": "~22.2.7", | ||
"@syncfusion/ej2-lists": "~22.2.8", | ||
"@syncfusion/ej2-navigations": "~22.2.8", | ||
"@syncfusion/ej2-pdf-export": "~22.2.5", | ||
"@syncfusion/ej2-popups": "~22.2.7", | ||
"@syncfusion/ej2-splitbuttons": "~22.2.5", | ||
"@syncfusion/ej2-svg-base": "~22.2.5" | ||
"@syncfusion/ej2-splitbuttons": "~22.2.8", | ||
"@syncfusion/ej2-svg-base": "~22.2.8" | ||
}, | ||
@@ -124,4 +124,4 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "22.2.7", | ||
"version": "22.2.8", | ||
"sideEffects": false | ||
} |
@@ -93,2 +93,4 @@ /** | ||
/** @hidden */ | ||
export declare const multiLevelLabelRender: string; | ||
/** @hidden */ | ||
export declare const chartLoaded: string; | ||
@@ -95,0 +97,0 @@ /** @hidden */ |
@@ -93,2 +93,4 @@ /** | ||
/** @hidden */ | ||
export var multiLevelLabelRender = 'multiLevelLabelRender'; | ||
/** @hidden */ | ||
export var chartLoaded = 'chartLoaded'; | ||
@@ -95,0 +97,0 @@ /** @hidden */ |
@@ -6,2 +6,3 @@ import * as events from '../../common/base/constant'; | ||
import { PivotButton } from '../actions/pivot-button'; | ||
import { DataManager } from '@syncfusion/ej2-data'; | ||
/** | ||
@@ -59,3 +60,3 @@ * Module to render Axis Fields | ||
} | ||
if ((this.parent.dataType === 'pivot' && this.parent.dataSourceSettings.dataSource && this.parent.dataSourceSettings.dataSource.length > 0) || | ||
if ((this.parent.dataType === 'pivot' && this.parent.dataSourceSettings.dataSource && (this.parent.dataSourceSettings.dataSource.length > 0 || this.parent.dataSourceSettings.dataSource instanceof DataManager)) || | ||
(this.parent.dataType === 'olap' && this.parent.dataSourceSettings.url && this.parent.dataSourceSettings.url !== '') || | ||
@@ -62,0 +63,0 @@ (this.parent.dataSourceSettings.mode === 'Server' && this.parent.dataSourceSettings.url && this.parent.dataSourceSettings.url !== '')) { |
@@ -105,2 +105,3 @@ import { PivotEngine, IAxisSet } from '../../base/engine'; | ||
private load; | ||
private multiLevelLabelRender; | ||
private resized; | ||
@@ -107,0 +108,0 @@ /** @hidden */ |
import * as cls from '../../common/base/css-constant'; | ||
import * as events from '../../common/base/constant'; | ||
import { PivotButton } from '../../common/actions/pivot-button'; | ||
import { DataManager } from '@syncfusion/ej2-data'; | ||
/** | ||
@@ -44,3 +45,5 @@ * Module to render Axis Fields | ||
} | ||
if ((this.parent.dataType === 'pivot' && this.parent.dataSourceSettings.dataSource && this.parent.dataSourceSettings.dataSource.length > 0) || | ||
if ((this.parent.dataType === 'pivot' && this.parent.dataSourceSettings.dataSource && | ||
(this.parent.dataSourceSettings.dataSource.length > 0 || | ||
this.parent.dataSourceSettings.dataSource instanceof DataManager)) || | ||
(this.parent.dataType === 'olap' && this.parent.dataSourceSettings.url && this.parent.dataSourceSettings.url !== '') || | ||
@@ -47,0 +50,0 @@ (this.parent.dataSourceSettings.mode === 'Server' && this.parent.dataSourceSettings.url !== '')) { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
39018964
379823