datatables.net-fixedcolumns-dt
Advanced tools
Comparing version 3.3.3 to 4.0.0
@@ -1,38 +0,36 @@ | ||
/*! DataTables styling wrapper for FixedColumns | ||
* ©2018 SpryMedia Ltd - datatables.net/license | ||
/*! DataTables integration for DataTables' FixedColumns | ||
* ©2016 SpryMedia Ltd - datatables.net/license | ||
*/ | ||
(function( factory ){ | ||
if ( typeof define === 'function' && define.amd ) { | ||
// AMD | ||
define( ['jquery', 'datatables.net-dt', 'datatables.net-fixedcolumns'], function ( $ ) { | ||
return factory( $, window, document ); | ||
} ); | ||
} | ||
else if ( typeof exports === 'object' ) { | ||
// CommonJS | ||
module.exports = function (root, $) { | ||
if ( ! root ) { | ||
root = window; | ||
} | ||
if ( ! $ || ! $.fn.dataTable ) { | ||
$ = require('datatables.net-dt')(root, $).$; | ||
} | ||
if ( ! $.fn.dataTable.FixedColumns ) { | ||
require('datatables.net-fixedcolumns')(root, $); | ||
} | ||
return factory( $, root, root.document ); | ||
}; | ||
} | ||
else { | ||
// Browser | ||
factory( jQuery, window, document ); | ||
} | ||
}(function( $, window, document, undefined ) { | ||
return $.fn.dataTable; | ||
})); | ||
(function (factory) { | ||
if (typeof define === 'function' && define.amd) { | ||
// AMD | ||
define(['jquery', 'datatables.net-dt', '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-dt')(root, $).$; | ||
} | ||
if (!$.fn.dataTable.FixedColumns) { | ||
// 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; | ||
})); |
/*! | ||
DataTables styling wrapper for FixedColumns | ||
©2018 SpryMedia Ltd - datatables.net/license | ||
DataTables integration for DataTables' FixedColumns | ||
©2016 SpryMedia Ltd - datatables.net/license | ||
*/ | ||
(function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-dt","datatables.net-fixedcolumns"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);if(!b||!b.fn.dataTable)b=require("datatables.net-dt")(a,b).$;b.fn.dataTable.FixedColumns||require("datatables.net-fixedcolumns")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c){return c.fn.dataTable}); | ||
(function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-dt","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-dt")(b,a).$);a.fn.dataTable.FixedColumns||require("datatables.net-fixedcolumns")(b,a);return c(a)}:c(jQuery)})(function(c){return c.fn.dataTable.fixedColumns}); |
@@ -7,3 +7,3 @@ { | ||
"types": "./types/fixedColumns.dataTables.d.ts", | ||
"version": "3.3.3", | ||
"version": "4.0.0", | ||
"files": [ | ||
@@ -22,5 +22,5 @@ "css/**/*.css", | ||
"dependencies": { | ||
"jquery": ">=1.7", | ||
"datatables.net-dt": "^1.10.15", | ||
"datatables.net-fixedcolumns": "3.3.3" | ||
"datatables.net-fixedcolumns": ">=3.3.3", | ||
"datatables.net-dt": ">=1.10.25", | ||
"jquery": ">=1.7" | ||
}, | ||
@@ -27,0 +27,0 @@ "moduleType": [ |
# FixedColumns for DataTables with styling for [DataTables](https://datatables.net/) | ||
This package contains a built distribution of the [FixedColumns extension](https://datatables.net/extensions/FixedColumns) for [DataTables](https://datatables.net/) with styling for [DataTables](https://datatables.net/). | ||
This package contains a built distribution of the [FixedColumns extension](https://datatables.net/extensions/fixedcolumns) for [DataTables](https://datatables.net/) with styling for [DataTables](https://datatables.net/). | ||
@@ -5,0 +5,0 @@ FixedColumns provides the ability to fix one or more columns to the left and / or right hand side of a DataTable that scrolls along the x-axis. This can be used if the columns show grouping, index or similar information. |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
7439
74
+ Addeddatatables.net@2.2.2(transitive)
+ Addeddatatables.net-dt@2.2.2(transitive)
+ Addeddatatables.net-fixedcolumns@5.0.4(transitive)
- Removeddatatables.net@1.13.11(transitive)
- Removeddatatables.net-dt@1.13.11(transitive)
- Removeddatatables.net-fixedcolumns@3.3.3(transitive)
Updateddatatables.net-dt@>=1.10.25