Skip to content

Commit

Permalink
set version to 5.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
olifolkerd committed Sep 7, 2022
1 parent e411a68 commit 1d8e2d0
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tabulator",
"main": "dist/js/tabulator.js",
"version": "5.3.3",
"version": "5.3.4",
"description": "Interactive table generation JavaScript library",
"keywords": [
"table",
Expand Down
17 changes: 9 additions & 8 deletions dist/js/tabulator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Tabulator v5.3.3 (c) Oliver Folkerd 2022 */
/* Tabulator v5.3.4 (c) Oliver Folkerd 2022 */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
Expand Down Expand Up @@ -3325,7 +3325,7 @@
var minHeight = 0;

if (!this.redrawBlock) {
this.element.style.height = "";
this.headersElement.style.height = "";
this.columns.forEach(function (column) {
column.clearVerticalAlign();
});
Expand All @@ -3336,7 +3336,7 @@
minHeight = height;
}
});
this.element.style.height = minHeight + "px";
this.headersElement.style.height = minHeight + "px";
this.columns.forEach(function (column) {
column.verticalAlign(_this3.table.options.columnHeaderVertAlign, minHeight);
});
Expand Down Expand Up @@ -5880,7 +5880,7 @@
value: function getRows(type) {
var rows = [];

if (!type) {
if (!type || type === true) {
rows = this.chain("rows-retrieve", type, null, this.rows) || this.rows;
} else {
switch (type) {
Expand Down Expand Up @@ -6021,10 +6021,11 @@
key: "_clearPlaceholder",
value: function _clearPlaceholder() {
if (this.placeholder && this.placeholder.parentNode) {
this.placeholder.parentNode.removeChild(this.placeholder); // clear empty table placeholder min
this.placeholder.parentNode.removeChild(this.placeholder);
} // clear empty table placeholder min

this.tableElement.style.minWidth = "";
}

this.tableElement.style.minWidth = "";
}
}, {
key: "_positionPlaceholder",
Expand Down Expand Up @@ -18190,9 +18191,9 @@
this.topElement.appendChild(row.getElement());
row.initialize();
row.normalizeHeight();
this.table.rowManager.adjustTableSize();
this.rows.push(row);
this.refreshData(false, "display");
this.table.rowManager.adjustTableSize();
this.styleRows();
} else {
console.warn("Freeze Error - Row is already frozen");
Expand Down
2 changes: 1 addition & 1 deletion dist/js/tabulator.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/js/tabulator.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/tabulator.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/tabulator_esm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Tabulator v5.3.0 (c) Oliver Folkerd 2022 */
/* Tabulator v5.3.4 (c) Oliver Folkerd 2022 */
class CoreFeature{

constructor(table){
Expand Down
4 changes: 2 additions & 2 deletions dist/js/tabulator_esm.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/tabulator_esm.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tabulator-tables",
"version": "5.3.3",
"version": "5.3.4",
"description": "Interactive table generation JavaScript library",
"style": "dist/css/tabulator.css",
"main": "dist/js/tabulator.js",
Expand Down

0 comments on commit 1d8e2d0

Please sign in to comment.