tabulator-tables
Advanced tools
Comparing version 5.1.7 to 5.1.8
@@ -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 @@ --> |
@@ -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
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
9355126
74660