@syncfusion/ej2-kanban
Advanced tools
Comparing version 20.3.59 to 20.3.60
@@ -9,2 +9,12 @@ # Changelog | ||
- `#F178602` - Now, the ability to drag & drop several cards onto the same column works properly. | ||
- `#F178604` - Now, the arrangement of several cards in descending order after drag and drop is now resolved. | ||
## 20.3.59 (2022-11-29) | ||
### Kanban | ||
#### Bug Fixes | ||
- `#FB37730` - Now, dragging and dropping cards quickly onto empty columns works properly. | ||
@@ -11,0 +21,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 20.3.59 | ||
* version : 20.3.60 | ||
* 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@20.3.56", | ||
"_id": "@syncfusion/ej2-kanban@20.3.59", | ||
"_inBundle": false, | ||
"_integrity": "sha512-ok356/Z1V6SlSxLucbzjHJhUA9U40q1y4vonwAoj55HLdXH4cOUWlvjez7g7+Ly87SjnkG6cKmM/Q6z34gjkvg==", | ||
"_integrity": "sha512-kpXvQDXi+p4/QRcR9z+sqJeJmz8/YgA/UOVgJV9lb//o3ntKV53sLYpQqt5oRAuphdbiRm2skv4QMapmMpf6XA==", | ||
"_location": "/@syncfusion/ej2-kanban", | ||
@@ -26,4 +26,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-kanban/-/ej2-kanban-20.3.56.tgz", | ||
"_shasum": "10cc679280a0fbea4f393ac038cde48f9ef1b27c", | ||
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-kanban/-/ej2-kanban-20.3.59.tgz", | ||
"_shasum": "4f123fd496fad7f07706285986b6cd084974e7e3", | ||
"_spec": "@syncfusion/ej2-kanban@*", | ||
@@ -41,8 +41,8 @@ "_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included", | ||
"@syncfusion/ej2-buttons": "~20.3.58", | ||
"@syncfusion/ej2-data": "~20.3.56", | ||
"@syncfusion/ej2-dropdowns": "~20.3.59", | ||
"@syncfusion/ej2-data": "~20.3.60", | ||
"@syncfusion/ej2-dropdowns": "~20.3.60", | ||
"@syncfusion/ej2-inputs": "~20.3.57", | ||
"@syncfusion/ej2-layouts": "~20.3.58", | ||
"@syncfusion/ej2-navigations": "~20.3.58", | ||
"@syncfusion/ej2-popups": "~20.3.59" | ||
"@syncfusion/ej2-navigations": "~20.3.60", | ||
"@syncfusion/ej2-popups": "~20.3.60" | ||
}, | ||
@@ -75,4 +75,4 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "20.3.59", | ||
"version": "20.3.60", | ||
"sideEffects": false | ||
} |
@@ -390,5 +390,8 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ | ||
if (this.dragObj.targetClone.parentElement) { | ||
var className = '.' + cls.CARD_CLASS + ':not(.' + cls.DRAGGED_CARD_CLASS + '),.' + cls.DROPPED_CLONE_CLASS; | ||
var isMultipleDrag = (this.dragObj.selectedCards && this.dragObj.selectedCards.length > 1 && | ||
this.parent.sortSettings.sortBy === 'Index'); | ||
var className = !isMultipleDrag ? '.' + cls.CARD_CLASS + ':not(.' + cls.DRAGGED_CARD_CLASS + '),.' + cls.DROPPED_CLONE_CLASS : | ||
'.' + cls.CARD_CLASS + ',.' + cls.DROPPED_CLONE_CLASS; | ||
var element = [].slice.call(this.dragObj.targetClone.parentElement.querySelectorAll(className)); | ||
dropIndex = element.indexOf(this.dragObj.targetClone); | ||
dropIndex = !isMultipleDrag ? element.indexOf(this.dragObj.targetClone) : element.indexOf(this.dragObj.targetClone) - 1; | ||
} | ||
@@ -395,0 +398,0 @@ if (!isNullOrUndefined(this.kanbanObj) && this.kanbanObj.element.querySelector('.' + cls.TARGET_MULTI_CLONE_CLASS)) { |
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
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
4287369
51607