Socket
Socket
Sign inDemoInstall

@realmocean/kanban

Package Overview
Dependencies
0
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 20.3.53 to 20.3.54

84

index.d.ts

@@ -25,4 +25,4 @@ // Generated by dts-bundle v0.7.3

change(value: Function): this;
vp_HeaderTemplate: Function;
headerTemplate(value: Function): this;
vp_HeaderTemplate: ColumnsModel;
headerTemplate(value: ColumnsModel): this;
setController(controller: UIController): this;

@@ -32,1 +32,81 @@ constructor();

/**
* Interface for a class Columns
*/
export interface ColumnsModel {
/**
* Defines the column keyField. It supports both number and string type.
* String type supports the multiple column keys and number type does not support the multiple column keys.
* @default null
*/
keyField?: string | number;
/**
* Defines the column header title
*
* @default null
*/
headerText?: string;
/**
* Defines the column template
*
* @default null
*/
template?: string;
/**
* Enable or disable toggle column
*
* @default false
*/
allowToggle?: boolean;
/**
* Defines the collapsed or expandable state
*
* @default true
*/
isExpanded?: boolean;
/**
* Defines the minimum card count in column
*
* @default null
* @aspType int
*/
minCount?: number;
/**
* Defines the maximum card count in column
*
* @default null
* @aspType int
*/
maxCount?: number;
/**
* Enable or disable card count in column
*
* @default true
*/
showItemCount?: boolean;
/**
* Enable or disable cell add button
*
* @default false
*/
showAddButton?: boolean;
/**
* Enable or disable column drag
*
* @default true
*/
allowDrag?: boolean;
/**
* Enable or disable column drop
*
* @default true
*/
allowDrop?: boolean;
/**
* Defines the column transition
*
* @default []
*/
transitionColumns?: string[];
}

2

package.json
{
"name": "@realmocean/kanban",
"version": "20.3.53",
"version": "20.3.54",
"description": "",

@@ -5,0 +5,0 @@ "keywords": [],

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