Skip to content

Commit e3ab535

Browse files
committed
update version to 6.2.2
1 parent 7c8f582 commit e3ab535

15 files changed

+27
-18
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tabulator",
33
"main": "dist/js/tabulator.js",
4-
"version": "6.2.1",
4+
"version": "6.2.2",
55
"description": "Interactive table generation JavaScript library",
66
"keywords": [
77
"table",

dist/js/tabulator.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Tabulator v6.2.1 (c) Oliver Folkerd 2024 */
1+
/* Tabulator v6.2.2 (c) Oliver Folkerd 2024 */
22
(function (global, factory) {
33
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
44
typeof define === 'function' && define.amd ? define(factory) :
@@ -1396,6 +1396,9 @@
13961396
});
13971397

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

14001403
if(this.parent.isGroup){
14011404
this.parent.matchChildWidths();

dist/js/tabulator.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/tabulator.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/tabulator.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/tabulator_esm.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Tabulator v6.2.1 (c) Oliver Folkerd 2024 */
1+
/* Tabulator v6.2.2 (c) Oliver Folkerd 2024 */
22
class CoreFeature{
33

44
constructor(table){
@@ -2701,6 +2701,9 @@ class Column extends CoreFeature{
27012701
});
27022702

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

27052708
if(this.parent.isGroup){
27062709
this.parent.matchChildWidths();

dist/js/tabulator_esm.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/tabulator_esm.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/tabulator_esm.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/tabulator_esm.min.mjs

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)