Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@syncfusion/ej2-kanban

Package Overview
Dependencies
Maintainers
3
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-kanban - npm Package Compare versions

Comparing version 19.1.63 to 19.1.65

14

CHANGELOG.md

@@ -7,2 +7,10 @@ # Changelog

#### Bug Fixes
- `#I287435` - The issue with "number type `keyField` arguments not supported on `showColumn`, `hideColumn`, `updateCard` and `getColumnData` public method" has been resolved.
## 19.1.63 (2021-05-13)
### Kanban
#### New Features

@@ -38,2 +46,8 @@

#### Bug Fixes
-`#I326941` - The issue with "'Unassigned' text in the swimlane kanban doesn't have localization" has been resolved.
### Kanban
#### New Features

@@ -40,0 +54,0 @@

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 19.1.63
* version : 19.1.65
* 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.1.59",
"_id": "@syncfusion/ej2-kanban@19.1.63",
"_inBundle": false,
"_integrity": "sha512-OrGipeUUR+KRVp4YszO2TGIDE1yKl1CT0MVHef7r2oTsOxZdrYRCSU/T1omcpDtR41E1xzGmnHX+CXZPIBASgA==",
"_integrity": "sha512-rU2V/CAU1qpACAXW35Mz0yny7J/hJuXw1UAWMAAAi2+ZwQo9Vyo+qvICnXZ5SuvxRBf8t3tbYILO1O6h3HRzzg==",
"_location": "/@syncfusion/ej2-kanban",

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

],
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-kanban/-/ej2-kanban-19.1.59.tgz",
"_shasum": "6d236c1ccf529a417d6f939b57d778a509968f40",
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-kanban/-/ej2-kanban-19.1.63.tgz",
"_shasum": "4cf5dae680c0a9ee2c9c313040c228838c0af2d2",
"_spec": "@syncfusion/ej2-kanban@*",

@@ -39,10 +39,10 @@ "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~19.1.63",
"@syncfusion/ej2-base": "~19.1.64",
"@syncfusion/ej2-buttons": "~19.1.63",
"@syncfusion/ej2-data": "~19.1.63",
"@syncfusion/ej2-dropdowns": "~19.1.63",
"@syncfusion/ej2-dropdowns": "~19.1.65",
"@syncfusion/ej2-inputs": "~19.1.63",
"@syncfusion/ej2-layouts": "~19.1.63",
"@syncfusion/ej2-navigations": "~19.1.63",
"@syncfusion/ej2-popups": "~19.1.63"
"@syncfusion/ej2-popups": "~19.1.64"
},

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

"typings": "index.d.ts",
"version": "19.1.63",
"version": "19.1.65",
"sideEffects": false
}

@@ -34,4 +34,4 @@ import { Kanban } from '../base/kanban';

deleteColumn(index: number): void;
showColumn(key: string): void;
hideColumn(key: string): void;
showColumn(key: string | number): void;
hideColumn(key: string | number): void;
}

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

Action.prototype.showColumn = function (key) {
var index = this.hideColumnKeys.indexOf(key);
var index = this.hideColumnKeys.indexOf(key.toString());
if (index !== -1) {

@@ -355,3 +355,3 @@ this.hideColumnKeys.splice(index, 1);

Action.prototype.hideColumn = function (key) {
this.hideColumnKeys.push(key);
this.hideColumnKeys.push(key.toString());
this.parent.notify(events.dataReady, { processedData: this.parent.kanbanData });

@@ -358,0 +358,0 @@ };

@@ -350,7 +350,7 @@ import { Component, ModuleDeclaration } from '@syncfusion/ej2-base';

* @function getColumnData
* @param {string} columnKey Accepts the column key to get the objects.
* @param {string | number} columnKey Accepts the column key to get the objects.
* @param {Object[]} dataSource Accepts the collection of objects to get the results based on given columnKey.
* @returns {Object[]} Returns the collection of card objects based on given inputs.
*/
getColumnData(columnKey: string, dataSource?: Record<string, any>[]): Record<string, any>[];
getColumnData(columnKey: string | number, dataSource?: Record<string, any>[]): Record<string, any>[];
/**

@@ -450,6 +450,6 @@ * Returns the swimlane column data based on swimlane keyField input.

* @function showColumn
* @param {string} key Accepts the hidden column key name to be shown from the hidden state in board.
* @param {string | number} key Accepts the hidden column key name to be shown from the hidden state in board.
* @returns {void}
*/
showColumn(key: string): void;
showColumn(key: string | number): void;
/**

@@ -459,6 +459,6 @@ * Hides the column from Kanban board based on the provided key in the columns.

* @function hideColumn
* @param {string} key Accepts the visible column key name to be hidden from the board.
* @param {string | number} key Accepts the visible column key name to be hidden from the board.
* @returns {void}
*/
hideColumn(key: string): void;
hideColumn(key: string | number): void;
/**

@@ -465,0 +465,0 @@ * Method to refresh the column header.

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

close: 'Close',
noCard: 'No cards to display'
noCard: 'No cards to display',
unassigned: 'Unassigned'
};

@@ -371,3 +372,3 @@ this.localeObj = new L10n(this.getModuleName(), defaultLocale, this.locale);

* @function getColumnData
* @param {string} columnKey Accepts the column key to get the objects.
* @param {string | number} columnKey Accepts the column key to get the objects.
* @param {Object[]} dataSource Accepts the collection of objects to get the results based on given columnKey.

@@ -495,3 +496,3 @@ * @returns {Object[]} Returns the collection of card objects based on given inputs.

* @function showColumn
* @param {string} key Accepts the hidden column key name to be shown from the hidden state in board.
* @param {string | number} key Accepts the hidden column key name to be shown from the hidden state in board.
* @returns {void}

@@ -506,3 +507,3 @@ */

* @function hideColumn
* @param {string} key Accepts the visible column key name to be hidden from the board.
* @param {string | number} key Accepts the visible column key name to be hidden from the board.
* @returns {void}

@@ -509,0 +510,0 @@ */

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

if (_this.parent.swimlaneSettings.showUnassignedRow) {
textField = 'Unassigned';
textField = _this.parent.localeObj.getConstant('unassigned');
keyField = '';

@@ -900,3 +900,3 @@ }

var td = [].slice.call(cardRow.children).filter(function (e) {
return e.getAttribute('data-key').replace(/\s/g, '').split(',').indexOf(key.replace(/\s/g, '')) !== -1;
return e.getAttribute('data-key').replace(/\s/g, '').split(',').indexOf(key.toString().replace(/\s/g, '')) !== -1;
})[0];

@@ -903,0 +903,0 @@ var cardWrapper_2 = td.querySelector('.' + cls.CARD_WRAPPER_CLASS);

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc