@syncfusion/ej2-pivotview
Advanced tools
Comparing version 18.4.39 to 18.4.41
@@ -7,2 +7,10 @@ # Changelog | ||
#### Bug Fixes | ||
- `#298311` - CSS issue of calculated field dialog in dark theme has been fixed. | ||
## 18.4.39 (2021-01-28) | ||
### Pivot Table | ||
#### Features | ||
@@ -9,0 +17,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 18.4.39 | ||
* version : 18.4.41 | ||
* 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@18.4.35", | ||
"_id": "@syncfusion/ej2-pivotview@18.4.39", | ||
"_inBundle": false, | ||
"_integrity": "sha512-g3Qnn4OYAaPFnK8xsxQSTvPfyzz3WbOAMTJFct+nk3iMWfab8JOEpTaQWjeWIQObkPGCbvEWCm+ZMx+pnhA/sg==", | ||
"_integrity": "sha512-UetCS0tGo79RbnpKiF8GHT2sfwzq0swIt2X74qy6RQ5sU5D75bs0wUfTc/l7cFW8geuMiPWENVA3UzohuWuSew==", | ||
"_location": "/@syncfusion/ej2-pivotview", | ||
@@ -26,4 +26,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-pivotview/-/ej2-pivotview-18.4.35.tgz", | ||
"_shasum": "f4eb7f5c42f5e61010140def39a031a46075c836", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-pivotview/-/ej2-pivotview-18.4.39.tgz", | ||
"_shasum": "312f641a145720f22a6a34be392436e0ef80817a", | ||
"_spec": "@syncfusion/ej2-pivotview@*", | ||
@@ -39,18 +39,18 @@ "_where": "/jenkins/workspace/automation_release_18.4.0.1-WOJ6QVY6EU5ONBWOYGQFKS2VU2UW7E67MOXUPKCE5AX7QQX7M5JQ/packages/included", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~18.4.39", | ||
"@syncfusion/ej2-buttons": "~18.4.39", | ||
"@syncfusion/ej2-calendars": "~18.4.39", | ||
"@syncfusion/ej2-charts": "~18.4.39", | ||
"@syncfusion/ej2-base": "~18.4.41", | ||
"@syncfusion/ej2-buttons": "~18.4.41", | ||
"@syncfusion/ej2-calendars": "~18.4.41", | ||
"@syncfusion/ej2-charts": "~18.4.41", | ||
"@syncfusion/ej2-compression": "~18.4.39", | ||
"@syncfusion/ej2-data": "~18.4.39", | ||
"@syncfusion/ej2-dropdowns": "~18.4.39", | ||
"@syncfusion/ej2-excel-export": "~18.4.39", | ||
"@syncfusion/ej2-dropdowns": "~18.4.41", | ||
"@syncfusion/ej2-excel-export": "~18.4.41", | ||
"@syncfusion/ej2-file-utils": "~18.4.39", | ||
"@syncfusion/ej2-grids": "~18.4.39", | ||
"@syncfusion/ej2-inputs": "~18.4.39", | ||
"@syncfusion/ej2-grids": "~18.4.41", | ||
"@syncfusion/ej2-inputs": "~18.4.41", | ||
"@syncfusion/ej2-lists": "~18.4.39", | ||
"@syncfusion/ej2-navigations": "~18.4.39", | ||
"@syncfusion/ej2-navigations": "~18.4.41", | ||
"@syncfusion/ej2-pdf-export": "~18.4.39", | ||
"@syncfusion/ej2-popups": "~18.4.39", | ||
"@syncfusion/ej2-splitbuttons": "~18.4.39", | ||
"@syncfusion/ej2-popups": "~18.4.41", | ||
"@syncfusion/ej2-splitbuttons": "~18.4.41", | ||
"@syncfusion/ej2-svg-base": "~18.4.39" | ||
@@ -83,4 +83,4 @@ }, | ||
"typings": "index.d.ts", | ||
"version": "18.4.39", | ||
"version": "18.4.41", | ||
"sideEffects": false | ||
} |
@@ -206,6 +206,13 @@ import { createElement, remove, extend, getInstance, select } from '@syncfusion/ej2-base'; | ||
} | ||
/* tslint:disable-next-line:max-line-length */ | ||
baseField = (baseField && (baseField.toString() !== 'undefined' && baseField.toString() !== 'null') ? baseField : fieldDataSource[0].value); | ||
fieldItemDataSource = Object.keys(this.parent.engineModule.fieldList[(baseField.toString() !== 'undefined' ? | ||
baseField : fieldDataSource[0].value)].formattedMembers); | ||
if (Object.keys(fieldDataSource).length === 0) { | ||
fieldDataSource.push({ value: '', text: '' }); | ||
baseField = ''; | ||
fieldItemDataSource = []; | ||
} | ||
else { | ||
/* tslint:disable-next-line:max-line-length */ | ||
baseField = (baseField && (baseField.toString() !== 'undefined' && baseField.toString() !== 'null') ? baseField : fieldDataSource[0].value); | ||
fieldItemDataSource = Object.keys(this.parent.engineModule.fieldList[(baseField.toString() !== 'undefined' ? | ||
baseField : fieldDataSource[0].value)].formattedMembers); | ||
} | ||
baseItem = (baseItem.toString() !== 'undefined' ? baseItem : fieldItemDataSource[0]); | ||
@@ -212,0 +219,0 @@ var mainDiv = createElement('div', { |
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
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
78562702
588970