@syncfusion/ej2-kanban
Advanced tools
Comparing version 25.2.3 to 25.2.6
@@ -5,2 +5,10 @@ # Changelog | ||
### Kanban | ||
#### Bug Fixes | ||
- `#I575728` - Now, Edited values in dialog will reflect in Cards when pressing the enter key in Kanban. | ||
- `I580937` - Now, clicking the save button in the edit dialog works properly in Kanban. | ||
## 25.1.42 (2024-04-30) | ||
@@ -7,0 +15,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 25.2.3 | ||
* version : 25.2.6 | ||
* Copyright Syncfusion Inc. 2001 - 2023. 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@25.1.42", | ||
"_id": "@syncfusion/ej2-kanban@25.2.3", | ||
"_inBundle": false, | ||
"_integrity": "sha512-v/+jhmvK87PNefHOddPoUEf/7FeNOGoc6DA42cpmucHd9JogPGkSeBPNqxUThkOXPrPxNeiLewEf0xRbQ1MqYA==", | ||
"_integrity": "sha512-71TiM0C5S8D4qVrQBjkZqbBhqAC4P0f3GwGT3Rh/5JrMOE/ZLtCIpdzBOPDpUio5pxiWb0t0zuMfthe6j+fCPA==", | ||
"_location": "/@syncfusion/ej2-kanban", | ||
@@ -26,4 +26,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-kanban/-/ej2-kanban-25.1.42.tgz", | ||
"_shasum": "d56b13c8521ec1f5363f8fc3847e3a40979292e7", | ||
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-kanban/-/ej2-kanban-25.2.3.tgz", | ||
"_shasum": "863d474fc2e60a2c2d525d1074e4a9907b17b949", | ||
"_spec": "@syncfusion/ej2-kanban@*", | ||
@@ -39,11 +39,11 @@ "_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~25.2.3", | ||
"@syncfusion/ej2-buttons": "~25.2.3", | ||
"@syncfusion/ej2-base": "~25.2.5", | ||
"@syncfusion/ej2-buttons": "~25.2.6", | ||
"@syncfusion/ej2-data": "~25.2.3", | ||
"@syncfusion/ej2-dropdowns": "~25.2.3", | ||
"@syncfusion/ej2-inputs": "~25.2.3", | ||
"@syncfusion/ej2-dropdowns": "~25.2.6", | ||
"@syncfusion/ej2-inputs": "~25.2.6", | ||
"@syncfusion/ej2-layouts": "~25.2.3", | ||
"@syncfusion/ej2-navigations": "~25.2.3", | ||
"@syncfusion/ej2-navigations": "~25.2.6", | ||
"@syncfusion/ej2-notifications": "~25.2.3", | ||
"@syncfusion/ej2-popups": "~25.2.3" | ||
"@syncfusion/ej2-popups": "~25.2.6" | ||
}, | ||
@@ -76,4 +76,4 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "25.2.3", | ||
"version": "25.2.6", | ||
"sideEffects": false | ||
} |
@@ -327,2 +327,6 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ | ||
var target = event.target.cloneNode(true); | ||
if (!isNullOrUndefined(event.keyCode) && event.keyCode === 13) { | ||
var valTrg = this.dialogObj.element.querySelector('.e-footer-content button.e-primary'); | ||
target = valTrg.cloneNode(true); | ||
} | ||
var id = this.formObj.element.id; | ||
@@ -440,2 +444,5 @@ if (document.getElementById(id) && this.formObj.validate() && | ||
} | ||
if (this.parent.isReact && this.formObj) { | ||
this.formObj.element.remove(); | ||
} | ||
} | ||
@@ -442,0 +449,0 @@ }; |
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
5647579
62998