datatables.net-select 1.6.2 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/js/dataTables.select.js +733 -539
- package/js/dataTables.select.min.js +2 -2
- package/js/dataTables.select.min.mjs +2 -2
- package/js/dataTables.select.mjs +736 -539
- package/package.json +2 -2
- package/types/types.d.ts +4 -4
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"main": "js/dataTables.select.js",
|
|
5
5
|
"module": "js/dataTables.select.mjs",
|
|
6
6
|
"types": "./types/types.d.ts",
|
|
7
|
-
"version": "
|
|
7
|
+
"version": "2.0.0",
|
|
8
8
|
"files": [
|
|
9
9
|
"js/**/*.js",
|
|
10
10
|
"js/**/*.mjs",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"sort"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"datatables.net": ">=
|
|
23
|
+
"datatables.net": ">=2.0.0",
|
|
24
24
|
"jquery": ">=1.7"
|
|
25
25
|
},
|
|
26
26
|
"moduleType": [
|
package/types/types.d.ts
CHANGED
|
@@ -80,7 +80,7 @@ declare module 'datatables.net' {
|
|
|
80
80
|
deselect(): Api<T>;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
interface
|
|
83
|
+
interface DataTablesStatic {
|
|
84
84
|
/**
|
|
85
85
|
* Select static methods
|
|
86
86
|
*/
|
|
@@ -152,7 +152,7 @@ interface ApiSelect<Api> {
|
|
|
152
152
|
* @param flag Value to set for the blurable option - true to enable, false to disable.
|
|
153
153
|
* @returns DataTables Api instance for chaining
|
|
154
154
|
*/
|
|
155
|
-
blurable(flag): Api;
|
|
155
|
+
blurable(flag: boolean): Api;
|
|
156
156
|
|
|
157
157
|
/**
|
|
158
158
|
* Get the summary information display state for the table.
|
|
@@ -167,7 +167,7 @@ interface ApiSelect<Api> {
|
|
|
167
167
|
* @param flag Value to set for the information summary display state - true to enable, false to disable.
|
|
168
168
|
* @returns DataTables API instance for chaining.
|
|
169
169
|
*/
|
|
170
|
-
info(flag): Api;
|
|
170
|
+
info(flag: boolean): Api;
|
|
171
171
|
|
|
172
172
|
/**
|
|
173
173
|
* Get the items that will be selected by user interaction (i.e. a click on the table).
|
|
@@ -226,6 +226,6 @@ interface ApiSelect<Api> {
|
|
|
226
226
|
* @param set true to allow item deselection, false to disallow.
|
|
227
227
|
* @returns DataTables API instance for chaining.
|
|
228
228
|
*/
|
|
229
|
-
toggleable(set): Api;
|
|
229
|
+
toggleable(set: boolean): Api;
|
|
230
230
|
}
|
|
231
231
|
|