Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-kanban

Package Overview
Dependencies
12
Maintainers
3
Versions
92
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 22.2.9 to 23.1.36

14

CHANGELOG.md

@@ -9,16 +9,6 @@ # Changelog

- `#I481342` - Now, kanban `virtualization` works properly when a small amount of data is loaded.
`#I492818` - Now, fast scrolling from top to bottom of the column continuously works properly.
- `#I484188` - Now, column scrolling works properly on Kanban `virtualization` when the Kanban columns have different data sizes.
`#I495751` - Now, dragging a card to the first position in the Kanban works properly without flickering.
- `#F45534` - Now, dragging and dropping a card into any position within a column works properly.
## 22.1.38 (2023-07-11)
### Kanban
#### Bug Fixes
- `#I476520`, `#I477525` - Now, dragging and dropping a card into an empty column works properly.
## 22.1.34 (2023-06-21)

@@ -25,0 +15,0 @@

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 22.2.9
* version : 23.1.36
* 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@22.2.5",
"_id": "@syncfusion/ej2-kanban@21.3.0",
"_inBundle": false,
"_integrity": "sha512-9Pa/7Ay959IcOhw4etXIsUo6ap0I4IExYMMPHk8VFoyYRNlahd5EIoTp6dRrrbfD5QiSicBMTv9kPMwK3qzFtQ==",
"_integrity": "sha512-7jL/jwUk5bonrk25W33rWRKT0fIWX2zCnev2Bp30S8e604DDc5gTZ6QtQTEwJeLSO9FMPnZNqv0HBXsjxVZUSA==",
"_location": "/@syncfusion/ej2-kanban",

@@ -26,6 +26,6 @@ "_phantomChildren": {},

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-kanban/-/ej2-kanban-22.2.5.tgz",
"_shasum": "c56a56d403cf867d984549cabfc0a2309d91375a",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-kanban/-/ej2-kanban-21.3.0.tgz",
"_shasum": "c1af0b284f050fcc0084f4eefe2439a858ff878d",
"_spec": "@syncfusion/ej2-kanban@*",
"_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
"_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",
"author": {

@@ -39,11 +39,11 @@ "name": "Syncfusion Inc."

"dependencies": {
"@syncfusion/ej2-base": "~22.2.9",
"@syncfusion/ej2-buttons": "~22.2.9",
"@syncfusion/ej2-data": "~22.2.5",
"@syncfusion/ej2-dropdowns": "~22.2.9",
"@syncfusion/ej2-inputs": "~22.2.9",
"@syncfusion/ej2-layouts": "~22.2.9",
"@syncfusion/ej2-navigations": "~22.2.8",
"@syncfusion/ej2-notifications": "~22.2.5",
"@syncfusion/ej2-popups": "~22.2.9"
"@syncfusion/ej2-base": "~23.1.36",
"@syncfusion/ej2-buttons": "~23.1.36",
"@syncfusion/ej2-data": "~23.1.36",
"@syncfusion/ej2-dropdowns": "~23.1.36",
"@syncfusion/ej2-inputs": "~23.1.36",
"@syncfusion/ej2-layouts": "~23.1.36",
"@syncfusion/ej2-navigations": "~23.1.36",
"@syncfusion/ej2-notifications": "~23.1.36",
"@syncfusion/ej2-popups": "~23.1.36"
},

@@ -76,4 +76,4 @@ "deprecated": false,

"typings": "index.d.ts",
"version": "22.2.9",
"version": "23.1.36",
"sideEffects": false
}

@@ -147,2 +147,7 @@ /* eslint-disable @typescript-eslint/no-explicit-any */

var targetEle = e.target;
var firstCloneCard = this.parent.element.querySelector('.e-target-dropped-clone');
var previousSiblingCard = null;
if (!isNoU(firstCloneCard)) {
previousSiblingCard = firstCloneCard.previousSibling;
}
if (!isNoU(e.target.parentElement)) {

@@ -153,3 +158,5 @@ if (e.target.nodeName === 'SPAN' && e.target.classList.contains('e-empty-card')) {

else if (e.target.nodeName === 'DIV' && e.target.classList.contains('e-kanban-border')) {
targetEle = e.target.parentElement;
if (!isNoU(previousSiblingCard) || !isNoU(e.target.parentElement.querySelector('.e-empty-card'))) {
targetEle = e.target.parentElement;
}
}

@@ -156,0 +163,0 @@ }

@@ -49,3 +49,5 @@ /* eslint-disable @typescript-eslint/no-explicit-any */

else {
tooltipContent = initializeCSPTemplate(function () { return "<div class=\"e-card-header-caption\">" + args.target.innerText + "</div>"; });
tooltipContent = initializeCSPTemplate(function () {
return "<div class=\"e-card-header-caption\">" + args.target.innerText + "</div>";
});
}

@@ -52,0 +54,0 @@ this.tooltipObj.setProperties({ content: tooltipContent }, true);

@@ -161,3 +161,3 @@ var __extends = (this && this.__extends) || (function () {

}
this.element.setAttribute('role', 'main');
this.element.setAttribute('role', 'presentation');
classList(this.element, addClasses, removeClasses);

@@ -600,3 +600,6 @@ this.element.style.width = formatUnit(this.width);

this.resetTemplates(['columnTemplate']);
if (this.layoutModule) {
if (this.enableVirtualization) {
this.virtualLayoutModule.refreshHeaders();
}
else {
this.layoutModule.refreshHeaders();

@@ -603,0 +606,0 @@ }

@@ -75,3 +75,3 @@ var __extends = (this && this.__extends) || (function () {

className: cls.TABLE_CLASS + ' ' + cls.HEADER_TABLE_CLASS,
attrs: { 'role': 'table' }
attrs: { 'role': 'table', 'aria-label': 'Kanban board header' }
});

@@ -92,3 +92,3 @@ headerWrap.appendChild(headerTable);

className: index === -1 ? cls.HEADER_CELLS_CLASS : cls.HEADER_CELLS_CLASS + ' ' + cls.COLLAPSED_CLASS,
attrs: { 'data-role': 'kanban-column', 'data-key': column.keyField.toString() }
attrs: { 'data-role': 'kanban-column', 'data-key': column.keyField.toString(), 'scope': 'row' }
});

@@ -309,3 +309,3 @@ var classList = [];

var cardWrapper_1 = createElement('div', {
className: cls.CARD_WRAPPER_CLASS, attrs: { 'role': 'listbox', 'tabindex': '0' }
className: cls.CARD_WRAPPER_CLASS, attrs: { 'role': 'listbox', 'tabindex': '0', 'aria-label': column.keyField.toString() }
});

@@ -532,3 +532,3 @@ if (column.transitionColumns.length > 0) {

className: cls.HEADER_CELLS_CLASS + ' ' + cls.STACKED_HEADER_CELL_CLASS,
attrs: { 'colspan': colSpan.toString() }
attrs: { 'colspan': colSpan.toString(), 'scope': 'row' }
});

@@ -535,0 +535,0 @@ tr.appendChild(th).appendChild(div);

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 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

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

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

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

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

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

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc