Skip to content

Commit

Permalink
update version to 6.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
olifolkerd committed Jul 14, 2024
1 parent 7c8f582 commit e3ab535
Show file tree
Hide file tree
Showing 15 changed files with 27 additions and 18 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": "6.2.1",
"version": "6.2.2",
"description": "Interactive table generation JavaScript library",
"keywords": [
"table",
Expand Down
5 changes: 4 additions & 1 deletion dist/js/tabulator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Tabulator v6.2.1 (c) Oliver Folkerd 2024 */
/* Tabulator v6.2.2 (c) Oliver Folkerd 2024 */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
Expand Down Expand Up @@ -1396,6 +1396,9 @@
});

this.contentElement.style.maxWidth = (childWidth - 1) + "px";
if (this.table.initialized) {
this.element.style.width = childWidth + "px";
}

if(this.parent.isGroup){
this.parent.matchChildWidths();
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.

5 changes: 4 additions & 1 deletion dist/js/tabulator_esm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Tabulator v6.2.1 (c) Oliver Folkerd 2024 */
/* Tabulator v6.2.2 (c) Oliver Folkerd 2024 */
class CoreFeature{

constructor(table){
Expand Down Expand Up @@ -2701,6 +2701,9 @@ class Column extends CoreFeature{
});

this.contentElement.style.maxWidth = (childWidth - 1) + "px";
if (this.table.initialized) {
this.element.style.width = childWidth + "px";
}

if(this.parent.isGroup){
this.parent.matchChildWidths();
Expand Down
2 changes: 1 addition & 1 deletion dist/js/tabulator_esm.js.map

Large diffs are not rendered by default.

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.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion dist/js/tabulator_esm.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Tabulator v6.2.1 (c) Oliver Folkerd 2024 */
/* Tabulator v6.2.2 (c) Oliver Folkerd 2024 */
class CoreFeature{

constructor(table){
Expand Down Expand Up @@ -2701,6 +2701,9 @@ class Column extends CoreFeature{
});

this.contentElement.style.maxWidth = (childWidth - 1) + "px";
if (this.table.initialized) {
this.element.style.width = childWidth + "px";
}

if(this.parent.isGroup){
this.parent.matchChildWidths();
Expand Down
2 changes: 1 addition & 1 deletion dist/js/tabulator_esm.mjs.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": "6.2.1",
"version": "6.2.2",
"description": "Interactive table generation JavaScript library",
"style": "dist/css/tabulator.css",
"main": "dist/js/tabulator.js",
Expand Down

0 comments on commit e3ab535

Please sign in to comment.