datatables.net-searchbuilder
Advanced tools
Comparing version 1.8.1 to 1.8.2
@@ -7,3 +7,3 @@ { | ||
"types": "./types/types.d.ts", | ||
"version": "1.8.1", | ||
"version": "1.8.2", | ||
"files": [ | ||
@@ -25,3 +25,3 @@ "js/**/*.js", | ||
"dependencies": { | ||
"datatables.net": "^2.1", | ||
"datatables.net": "^2", | ||
"jquery": ">=1.7" | ||
@@ -28,0 +28,0 @@ }, |
# SearchBuilder for DataTables | ||
This package contains distribution files for the [SearchBuilder extension](https://datatables.net/extensions/searchbuilder) for [DataTables](https://datatables.net/). Only the core software for this library is contained in this package - to be correctly styled, a styling package for SearchBuilder must also be included. Styling options include DataTable's native styling, [Bootstrap](http://getbootstrap.com) and [Foundation](http://foundation.zurb.com/). | ||
This is the distribution package for the [SearchBuilder extension](https://datatables.net/extensions/searchbuilder) for [DataTables](https://datatables.net/). Only the core software for this library is contained in this package - to be correctly styled, a styling package for SearchBuilder must also be included. Please see the [npm installation documentation on the DataTables site](https://datatables.net/manual/installation#Node.js-/-NPM) for full details. | ||
@@ -12,32 +12,28 @@ SearchBuilder adds user defined complex search to the DataTable with the capability to search the DataTable by creating groups and conditions. | ||
For inclusion of this library using a standard `<script>` tag, rather than using this package, it is recommended that you use the [DataTables download builder](//datatables.net/download) which can create CDN or locally hosted packages for you, will all dependencies satisfied. | ||
To use DataTables with a simple `<script>` tag, rather than using this package, it is recommended that you use the [DataTables download builder](//datatables.net/download) which can create CDN or locally hosted packages for you, will all dependencies satisfied. | ||
### npm | ||
For installation via npm, yarn and other similar package managers, install this package with your package manager - e.g.: | ||
``` | ||
npm install datatables.net | ||
npm install datatables.net-searchbuilder | ||
``` | ||
ES3 Syntax | ||
``` | ||
var $ = require( 'jquery' ); | ||
require( 'datatables.net-searchbuilder' )( window, $ ); | ||
``` | ||
Then, to load and initialise DataTables and SearchBuilder in your code use: | ||
ES6 Syntax | ||
``` | ||
import DataTable from 'datatables.net'; | ||
import 'datatables.net-searchbuilder' | ||
``` | ||
### bower | ||
new DataTable('#myTable', { | ||
// initalisation options | ||
}); | ||
``` | ||
bower install --save datatables.net-searchbuilder | ||
``` | ||
## Documentation | ||
Full documentation and examples for SearchBuilder can be found [on the website](https://datatables.net/extensions/searchbuilder). | ||
Full documentation and examples for SearchBuilder can be found [on the DataTables website](https://datatables.net/extensions/searchbuilder). | ||
@@ -48,3 +44,2 @@ ## Bug / Support | ||
### Contributing | ||
@@ -51,0 +46,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
508895
8701
51
Updateddatatables.net@^2