Skip to content

Commit

Permalink
update version number to 5.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
olifolkerd committed Oct 9, 2022
1 parent 2123d5d commit d6a6259
Show file tree
Hide file tree
Showing 10 changed files with 48 additions and 14 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.4.0",
"version": "5.4.1",
"description": "Interactive table generation JavaScript library",
"keywords": [
"table",
Expand Down
40 changes: 37 additions & 3 deletions dist/js/tabulator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Tabulator v5.4.0 (c) Oliver Folkerd 2022 */
/* Tabulator v5.4.1 (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 @@ -2339,6 +2339,12 @@
this.fitDataColActualWidthCheck(column);

this.rightCol++; // Don't move this below the >= check below

this.getVisibleRows().forEach((row) => {
if(row.type !== "group"){
row.modules.vdomHoz.rightCol = this.rightCol;
}
});

if(this.rightCol >= (this.columns.length - 1)){
this.vDomPadRight = 0;
Expand Down Expand Up @@ -2378,6 +2384,12 @@
});

this.leftCol--; // don't move this below the <= check below

this.getVisibleRows().forEach((row) => {
if(row.type !== "group"){
row.modules.vdomHoz.leftCol = this.leftCol;
}
});

if(this.leftCol <= 0){ // replicating logic in addColRight
this.vDomPadLeft = 0;
Expand Down Expand Up @@ -2430,6 +2442,12 @@

this.vDomPadRight += column.getWidth();
this.rightCol --;

this.getVisibleRows().forEach((row) => {
if(row.type !== "group"){
row.modules.vdomHoz.rightCol = this.rightCol;
}
});
}else {
working = false;
}
Expand Down Expand Up @@ -2468,6 +2486,12 @@

this.vDomPadLeft += column.getWidth();
this.leftCol ++;

this.getVisibleRows().forEach((row) => {
if(row.type !== "group"){
row.modules.vdomHoz.leftCol = this.leftCol;
}
});
}else {
working = false;
}
Expand Down Expand Up @@ -11904,6 +11928,7 @@
this.listIteration = 0;

this.lastAction="";
this.filterTerm="";

this.blurable = true;

Expand Down Expand Up @@ -15195,9 +15220,9 @@
});

editorElement.addEventListener("focus", (e) => {
var left = this.table.columnManager.element.scrollLeft;
var left = this.table.columnManager.contentsElement.scrollLeft;

var headerPos = this.table.rowManager.element.scrollLeft + parseInt(this.table.columnManager.element.style.marginLeft);
var headerPos = this.table.rowManager.element.scrollLeft;

if(left !== headerPos){
this.table.rowManager.scrollHorizontal(left);
Expand Down Expand Up @@ -18032,6 +18057,9 @@
this.groupList.forEach(function(group){
group.wipe();
});

this.groupList = [];
this.groups = {};
}
}

Expand Down Expand Up @@ -18118,8 +18146,13 @@
this.assignRowToGroup(row, oldGroups);
});
}

Object.values(oldGroups).forEach((group) => {
group.wipe();
});
}


createGroup(groupID, level, oldGroups){
var groupKey = level + "_" + groupID,
group;
Expand Down Expand Up @@ -21485,6 +21518,7 @@
if(!this.initialLoad){
if(this.mode == "local" || force){
this.page = 1;
this.trackChanges();
}
}
}
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.4.0 (c) Oliver Folkerd 2022 */
/* Tabulator v5.4.1 (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.4.0",
"version": "5.4.1",
"description": "Interactive table generation JavaScript library",
"style": "dist/css/tabulator.css",
"main": "dist/js/tabulator.js",
Expand Down

0 comments on commit d6a6259

Please sign in to comment.