@syncfusion/ej2-kanban
Advanced tools
Comparing version 19.3.53 to 19.3.55
@@ -9,2 +9,10 @@ # Changelog | ||
- `#I344836` - The issue with "Swimlane row is not created when kanban keyField has 0 value alone" has been resolved. | ||
## 19.3.46 (2021-10-19) | ||
### Kanban | ||
#### Bug Fixes | ||
- `#I344836` - The issue with "Card's are not rendered, when Kanban KeyField has value as zero" has been resolved. | ||
@@ -11,0 +19,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 19.3.53 | ||
* version : 19.3.55 | ||
* 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-kanban@*", | ||
"_id": "@syncfusion/ej2-kanban@19.3.45", | ||
"_id": "@syncfusion/ej2-kanban@19.3.53", | ||
"_inBundle": false, | ||
"_integrity": "sha512-R3HsEHX5TepeVhULWmU8mW16GDNaPZcK4JepSa3POiTXy5JHTqM9t/1FvRfWJIRUghlT9t7BbbiEOyoWG78ByA==", | ||
"_integrity": "sha512-YyoDMyeWkGrFvITh7N21JlEkzwCXrKGW4Cnq7Z2M8FaLbhpkq6OMJeld48AjjT67gwmk9MsIVm9zuBFL9rTkIg==", | ||
"_location": "/@syncfusion/ej2-kanban", | ||
@@ -26,4 +26,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-kanban/-/ej2-kanban-19.3.45.tgz", | ||
"_shasum": "6421ac595220783217f7e1df05d2b9e8d6fc6fc6", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-kanban/-/ej2-kanban-19.3.53.tgz", | ||
"_shasum": "da7e2117afe3e8d6a8450e90281b35820f3eb565", | ||
"_spec": "@syncfusion/ej2-kanban@*", | ||
@@ -39,9 +39,9 @@ "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~19.3.53", | ||
"@syncfusion/ej2-base": "~19.3.54", | ||
"@syncfusion/ej2-buttons": "~19.3.53", | ||
"@syncfusion/ej2-data": "~19.3.53", | ||
"@syncfusion/ej2-dropdowns": "~19.3.53", | ||
"@syncfusion/ej2-dropdowns": "~19.3.55", | ||
"@syncfusion/ej2-inputs": "~19.3.53", | ||
"@syncfusion/ej2-layouts": "~19.3.53", | ||
"@syncfusion/ej2-navigations": "~19.3.53", | ||
"@syncfusion/ej2-navigations": "~19.3.54", | ||
"@syncfusion/ej2-popups": "~19.3.53" | ||
@@ -75,4 +75,4 @@ }, | ||
"typings": "index.d.ts", | ||
"version": "19.3.53", | ||
"version": "19.3.55", | ||
"sideEffects": false | ||
} |
@@ -442,3 +442,4 @@ var __extends = (this && this.__extends) || (function () { | ||
if (!_this.parent.swimlaneSettings.showEmptyRow) { | ||
if (!obj[_this.parent.keyField] || (obj[_this.parent.keyField] && _this.columnKeys.indexOf(obj[_this.parent.keyField].toString()) === -1)) { | ||
if ((isNullOrUndefined(obj[_this.parent.keyField])) || (obj[_this.parent.keyField] === '') || | ||
(obj[_this.parent.keyField] && _this.columnKeys.indexOf(obj[_this.parent.keyField].toString()) === -1)) { | ||
return; | ||
@@ -445,0 +446,0 @@ } |
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 not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
3580495
43802