🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →

datatables.net-fixedcolumns-bs5

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

datatables.net-fixedcolumns-bs5 - npm Package Compare versions

Comparing version

to
4.2.0

@@ -0,36 +1,52 @@

/*! Bootstrap 5 integration for DataTables' FixedColumns
* ©2016 SpryMedia Ltd - datatables.net/license
* © SpryMedia Ltd - datatables.net/license
*/
(function (factory) {
if (typeof define === 'function' && define.amd) {
// AMD
define(['jquery', 'datatables.net-bs5', 'datatables.net-fixedcolumns'], function ($) {
return factory($);
});
}
else if (typeof exports === 'object') {
// CommonJS
module.exports = function (root, $) {
if (!root) {
root = window;
}
if (!$ || !$.fn.dataTable) {
// eslint-disable-next-line @typescript-eslint/no-var-requires
$ = require('datatables.net-bs5')(root, $).$;
}
if (!$.fn.dataTable.SearchPanes) {
// eslint-disable-next-line @typescript-eslint/no-var-requires
require('datatables.net-fixedcolumns')(root, $);
}
return factory($);
};
}
else {
// Browser
factory(jQuery);
}
}(function ($) {
'use strict';
var dataTable = $.fn.dataTable;
return dataTable.fixedColumns;
(function( factory ){
if ( typeof define === 'function' && define.amd ) {
// AMD
define( ['jquery', 'datatables.net-bs5', 'datatables.net-fixedcolumns'], function ( $ ) {
return factory( $, window, document );
} );
}
else if ( typeof exports === 'object' ) {
// CommonJS
module.exports = function (root, $) {
if ( ! root ) {
// CommonJS environments without a window global must pass a
// root. This will give an error otherwise
root = window;
}
if ( ! $ ) {
$ = typeof window !== 'undefined' ? // jQuery's factory checks for a global window
require('jquery') :
require('jquery')( root );
}
if ( ! $.fn.dataTable ) {
require('datatables.net-bs5')(root, $);
}
if ( ! $.fn.dataTable ) {
require('datatables.net-fixedcolumns')(root, $);
}
return factory( $, root, root.document );
};
}
else {
// Browser
factory( jQuery, window, document );
}
}(function( $, window, document, undefined ) {
'use strict';
var DataTable = $.fn.dataTable;
return DataTable;
}));

@@ -1,5 +0,4 @@

/*!
Bootstrap 5 integration for DataTables' FixedColumns
©2016 SpryMedia Ltd - datatables.net/license
*/
(function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs5","datatables.net-fixedcolumns"],function(b){return c(b)}):"object"===typeof exports?module.exports=function(b,a){b||(b=window);a&&a.fn.dataTable||(a=require("datatables.net-bs5")(b,a).$);a.fn.dataTable.SearchPanes||require("datatables.net-fixedcolumns")(b,a);return c(a)}:c(jQuery)})(function(c){return c.fn.dataTable.fixedColumns});
/*! Bootstrap 5 integration for DataTables' FixedColumns
* © SpryMedia Ltd - datatables.net/license
*/
!function(t){"function"==typeof define&&define.amd?define(["jquery","datatables.net-bs5","datatables.net-fixedcolumns"],function(e){return t(e,window,document)}):"object"==typeof exports?module.exports=function(e,n){return e=e||window,(n=n||("undefined"!=typeof window?require("jquery"):require("jquery")(e))).fn.dataTable||require("datatables.net-bs5")(e,n),n.fn.dataTable||require("datatables.net-fixedcolumns")(e,n),t(n,0,e.document)}:t(jQuery,window,document)}(function(e,n,t,u){"use strict";return e.fn.dataTable});

@@ -5,8 +5,10 @@ {

"main": "js/fixedColumns.bootstrap5.js",
"module": "js/fixedColumns.bootstrap5.mjs",
"style": "css/fixedColumns.bootstrap5.css",
"types": "./types/fixedColumns.bootstrap5.d.ts",
"version": "4.1.0",
"types": "./types/types.d.ts",
"version": "4.2.0",
"files": [
"css/**/*.css",
"js/**/*.js",
"js/**/*.mjs",
"types/**/*.d.ts"

@@ -25,4 +27,4 @@ ],

"dependencies": {
"datatables.net-fixedcolumns": ">=4.0.0",
"datatables.net-bs5": ">=1.11.3",
"datatables.net-fixedcolumns": ">=4.1.0",
"datatables.net-bs5": ">=1.12.1",
"jquery": ">=1.7"

@@ -29,0 +31,0 @@ },

/*! Bootstrap 5 integration for DataTables' FixedColumns
* ©2016 SpryMedia Ltd - datatables.net/license
* © SpryMedia Ltd - datatables.net/license
*/

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet