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

tabulator-tables

Package Overview
Dependencies
Maintainers
1
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tabulator-tables - npm Package Compare versions

Comparing version 5.1.7 to 5.1.8

5

.github/ISSUE_TEMPLATE/bug_report.md

@@ -13,3 +13,3 @@ ---

Please read the Bug Reporting Guide before completing this issue: http://tabulator.info/community#bug
Please read the Bug Reporting Guide before completing this issue: http://tabulator.info/community/bug

@@ -27,4 +27,5 @@ Please make sure you fill in all the sections of this template to give us the best chance of helping you

YOU MUST include a link to a JS Fiddle or Codepen that demonstrates the problem, it is very hard to diagnose an issue from a simple description.
<!--
Please read the Minimal Reproducable Example guide if you are unsure what the example should look like http://tabulator.info/community/mre
<!--
ISSUES CREATED WITHOUT THIS EXAMPLE WILL BE CLOSED WITHOUT DISCUSSION

@@ -31,0 +32,0 @@ -->

2

.github/ISSUE_TEMPLATE/feature_request.md

@@ -11,3 +11,3 @@ ---

<!--
Please read the Feature Requesting Guide before completing this issue: http://tabulator.info/community#feature
Please read the Feature Requesting Guide before completing this issue: http://tabulator.info/community/feature
-->

@@ -14,0 +14,0 @@

{
"name": "tabulator",
"main": "dist/js/tabulator.js",
"version": "5.1.7",
"version": "5.1.8",
"description": "Interactive table generation JavaScript library",

@@ -6,0 +6,0 @@ "keywords": [

{
"name": "tabulator-tables",
"version": "5.1.7",
"version": "5.1.8",
"description": "Interactive table generation JavaScript library",

@@ -5,0 +5,0 @@ "style": "dist/css/tabulator.css",

@@ -15,3 +15,3 @@ export default class ComponentFunctionBinder{

if(this.bindings[type][funcName]){
console.warn("Unable to bind component handler, a matching function name is already bound", type, funcName, hanlder)
console.warn("Unable to bind component handler, a matching function name is already bound", type, funcName, handler)
}else{

@@ -23,3 +23,3 @@ this.bindings[type][funcName] = handler;

handle(type, component, name){
if(this.bindings[type] && this.bindings[type][name]){
if(this.bindings[type] && this.bindings[type][name] && typeof this.bindings[type][name].bind === 'function'){
return this.bindings[type][name].bind(null, component);

@@ -32,2 +32,2 @@ }else{

}
}
}

@@ -483,2 +483,3 @@ import Helpers from '../../../../core/tools/Helpers.js';

chooseItems();
showList();
}

@@ -485,0 +486,0 @@ });

@@ -641,2 +641,3 @@ import Module from '../../core/Module.js';

this.dispatch("cell-editing", cell);
this.dispatchExternal("cellEditing", component);

@@ -643,0 +644,0 @@

@@ -12,5 +12,4 @@ export default function(cell, formatterParams, onRendered){

if(newDatetime.isValid){
if(formatterParams.timezone){
newDatetime = newDatetime.shiftTimezone(formatterParams.timezone);
newDatetime = newDatetime.setZone(formatterParams.timezone);
}

@@ -20,3 +19,2 @@

}else{
if(invalid === true || !value){

@@ -23,0 +21,0 @@ return value;

@@ -316,2 +316,3 @@ import Module from '../../core/Module.js';

this.table.rowManager.element.addEventListener("scroll", this.blurEvent);
this.subscribe("cell-editing", this.blurEvent);
document.body.addEventListener("click", this.blurEvent);

@@ -370,2 +371,3 @@ document.body.addEventListener("contextmenu", this.blurEvent);

this.table.rowManager.element.removeEventListener("scroll", this.blurEvent);
this.unsubscribe("cell-editing", this.blurEvent);

@@ -381,2 +383,2 @@ if(this.currentComponent){

export default Menu;
export default Menu;

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