tabulator-tables
Advanced tools
Comparing version 5.3.3 to 5.3.4
{ | ||
"name": "tabulator", | ||
"main": "dist/js/tabulator.js", | ||
"version": "5.3.3", | ||
"version": "5.3.4", | ||
"description": "Interactive table generation JavaScript library", | ||
@@ -6,0 +6,0 @@ "keywords": [ |
{ | ||
"name": "tabulator-tables", | ||
"version": "5.3.3", | ||
"version": "5.3.4", | ||
"description": "Interactive table generation JavaScript library", | ||
@@ -5,0 +5,0 @@ "style": "dist/css/tabulator.css", |
@@ -290,3 +290,3 @@ import CoreFeature from './CoreFeature.js'; | ||
this.element.style.height=""; | ||
this.headersElement.style.height=""; | ||
@@ -305,3 +305,3 @@ this.columns.forEach((column) => { | ||
this.element.style.height = minHeight + "px"; | ||
this.headersElement.style.height = minHeight + "px"; | ||
@@ -308,0 +308,0 @@ this.columns.forEach((column) => { |
@@ -791,3 +791,3 @@ import CoreFeature from './CoreFeature.js'; | ||
if(!type){ | ||
if(!type || type === true){ | ||
rows = this.chain("rows-retrieve", type, null, this.rows) || this.rows; | ||
@@ -932,6 +932,6 @@ }else{ | ||
this.placeholder.parentNode.removeChild(this.placeholder); | ||
// clear empty table placeholder min | ||
this.tableElement.style.minWidth = ""; | ||
} | ||
// clear empty table placeholder min | ||
this.tableElement.style.minWidth = ""; | ||
} | ||
@@ -938,0 +938,0 @@ |
@@ -103,4 +103,3 @@ import Module from '../../core/Module.js'; | ||
row.normalizeHeight(); | ||
this.table.rowManager.adjustTableSize(); | ||
this.rows.push(row); | ||
@@ -110,2 +109,4 @@ | ||
this.table.rowManager.adjustTableSize(); | ||
this.styleRows(); | ||
@@ -112,0 +113,0 @@ |
@@ -282,4 +282,3 @@ import Module from '../../core/Module.js'; | ||
userGetGroupedData(){ | ||
return this.table.options.groupBy ? | ||
this.getGroupedData() : this.getData(); | ||
return this.table.options.groupBy ? this.getGroupedData() : this.getData(); | ||
} | ||
@@ -286,0 +285,0 @@ |
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
10459936
80042