Skip to content

Commit

Permalink
update version number to 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
olifolkerd committed Jul 8, 2022
1 parent f9a6545 commit de954ac
Show file tree
Hide file tree
Showing 33 changed files with 1,456 additions and 764 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.2.7",
"version": "5.3.0",
"description": "Interactive table generation JavaScript library",
"keywords": [
"table",
Expand Down
2 changes: 1 addition & 1 deletion dist/css/tabulator.min.css

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_bootstrap3.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_bootstrap3.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_bootstrap4.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_bootstrap4.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_bootstrap5.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_bootstrap5.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_bulma.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_bulma.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_materialize.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_materialize.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_midnight.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_midnight.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_modern.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_modern.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_semanticui.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_semanticui.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_simple.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_simple.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_site.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/tabulator_site.min.css.map

Large diffs are not rendered by default.

74 changes: 37 additions & 37 deletions dist/js/jquery_wrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,46 +10,46 @@
*
*/

(function (factory) {
"use strict";
if (typeof define === 'function' && define.amd) {
define(['jquery', 'tabulator', 'jquery-ui'], factory);
}
else if(typeof module !== 'undefined' && module.exports) {
module.exports = factory(
require('jquery'),
require('tabulator'),
require('jquery-ui')
);
}
else {
factory(jQuery, Tabulator);
}
}(function ($, Tabulator) {
(function (root, factory) {
"use strict";
if (typeof define === 'function' && define.amd) {
define(['jquery', 'tabulator', 'jquery-ui'], factory);
}
else if(typeof module !== 'undefined' && module.exports) {
module.exports = factory(
require('jquery'),
require('tabulator'),
require('jquery-ui')
);
}
else {
factory(root.jQuery, root.Tabulator);
}
}(this, function ($, Tabulator) {

$.widget("ui.tabulator", {
_create:function(){
var options = Object.assign({}, this.options);
$.widget("ui.tabulator", {
_create:function(){
var options = Object.assign({}, this.options);

delete options.create;
delete options.disabled;
delete options.create;
delete options.disabled;

this.table = new Tabulator(this.element[0], options);
this.table = new Tabulator(this.element[0], options);

//map tabulator functions to jquery wrapper
for(var key in Tabulator.prototype){
if(typeof Tabulator.prototype[key] === "function" && key.charAt(0) !== "_"){
this[key] = this.table[key].bind(this.table);
}
}
},
//map tabulator functions to jquery wrapper
for(var key in Tabulator.prototype){
if(typeof Tabulator.prototype[key] === "function" && key.charAt(0) !== "_"){
this[key] = this.table[key].bind(this.table);
}
}
},

_setOption: function(option, value){
console.error("Tabulator jQuery wrapper does not support setting options after the table has been instantiated");
},
_setOption: function(option, value){
console.error("Tabulator jQuery wrapper does not support setting options after the table has been instantiated");
},

_destroy: function(option, value){
this.table.destroy();
},
});
}));
_destroy: function(option, value){
this.table.destroy();
},
});
}));
Loading

0 comments on commit de954ac

Please sign in to comment.