datatables.net-autofill-bs4 3.0.0 → 3.1.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.
@@ -1,4 +1,4 @@
1
- /*! AutoFill Bootstrap 4 styling 3.0.0 for DataTables
1
+ /*! AutoFill Bootstrap 4 styling 3.1.0 for DataTables
2
2
  * Copyright (c) SpryMedia Ltd - datatables.net/license
3
3
  */
4
4
 
@@ -1,4 +1,4 @@
1
- /*! AutoFill Bootstrap 4 styling 3.0.0 for DataTables
1
+ /*! AutoFill Bootstrap 4 styling 3.1.0 for DataTables
2
2
  * Copyright (c) SpryMedia Ltd - datatables.net/license
3
3
  */
4
4
  (t=>{var n;"function"==typeof define&&define.amd?define(["datatables.net-bs4","datatables.net-autofill"],function(e){return t(window,document,e)}):"object"==typeof exports?(n=function(e){e.DataTable||require("datatables.net-bs4")(e),window.DataTable.AutoFill||require("datatables.net-autofill")(e)},"undefined"==typeof window?module.exports=function(e){return e=e||window,n(e),t(0,e.document,e.DataTable)}:(n(window),module.exports=t(window,window.document,window.DataTable))):t(window,document,window.DataTable)})(function(e,t,n){return n.AutoFill.classes.btn="btn btn-secondary",n});
@@ -1,4 +1,4 @@
1
- /*! AutoFill Bootstrap 4 styling 3.0.0 for DataTables
1
+ /*! AutoFill Bootstrap 4 styling 3.1.0 for DataTables
2
2
  * Copyright (c) SpryMedia Ltd - datatables.net/license
3
3
  */
4
4
  import DataTable from"datatables.net-bs4";import AutoFill from"datatables.net-autofill";DataTable.AutoFill.classes.btn="btn btn-secondary";export default DataTable;
@@ -1,4 +1,4 @@
1
- /*! AutoFill Bootstrap 4 styling 3.0.0 for DataTables
1
+ /*! AutoFill Bootstrap 4 styling 3.1.0 for DataTables
2
2
  * Copyright (c) SpryMedia Ltd - datatables.net/license
3
3
  */
4
4
 
package/package.json CHANGED
@@ -1,16 +1,15 @@
1
1
  {
2
2
  "name": "datatables.net-autofill-bs4",
3
3
  "description": "AutoFill for DataTables with styling for [Bootstrap4](https://getbootstrap.com/docs/4.6/getting-started/introduction/)",
4
- "main": "js/autoFill.bootstrap4.js",
5
- "module": "js/autoFill.bootstrap4.mjs",
6
- "style": "css/autoFill.bootstrap4.css",
4
+ "main": "./js/autoFill.bootstrap4.js",
5
+ "module": "./js/autoFill.bootstrap4.mjs",
6
+ "style": "./css/autoFill.bootstrap4.css",
7
7
  "types": "./types/autoFill.bootstrap4.d.ts",
8
- "version": "3.0.0",
8
+ "version": "3.1.0",
9
9
  "files": [
10
- "css/**/*.css",
11
- "js/**/*.js",
12
- "js/**/*.mjs",
13
- "types/**/*.d.ts"
10
+ "js",
11
+ "css",
12
+ "types"
14
13
  ],
15
14
  "keywords": [
16
15
  "AutoFill",
@@ -23,8 +22,8 @@
23
22
  "sort"
24
23
  ],
25
24
  "dependencies": {
26
- "datatables.net-autofill": "3.0.0",
27
- "datatables.net-bs4": "^3"
25
+ "datatables.net-autofill": "3.1.0",
26
+ "datatables.net-bs4": "^3.1"
28
27
  },
29
28
  "author": {
30
29
  "name": "SpryMedia Ltd",
@@ -36,5 +35,24 @@
36
35
  "repository": {
37
36
  "type": "git",
38
37
  "url": "git+https://github.com/DataTables/AutoFill.git"
39
- }
38
+ },
39
+ "exports": {
40
+ ".": {
41
+ "types": "./types/autoFill.bootstrap4.d.ts",
42
+ "import": "./js/autoFill.bootstrap4.mjs",
43
+ "default": "./js/autoFill.bootstrap4.mjs",
44
+ "require": "./js/autoFill.bootstrap4.js"
45
+ },
46
+ "./js/*": "./js/*",
47
+ "./css": {
48
+ "types": "./types/css.d.ts",
49
+ "default": "./css/autoFill.bootstrap4.css"
50
+ },
51
+ "./css/*": {
52
+ "types": "./types/css.d.ts",
53
+ "default": "./css/*"
54
+ },
55
+ "./package.json": "./package.json"
56
+ },
57
+ "sideEffects": true
40
58
  }