Skip to content

Commit

Permalink
update packages to last datatables.net 1.10.25
Browse files Browse the repository at this point in the history
  • Loading branch information
noogen committed Jan 5, 2022
1 parent 2bff203 commit 4b025a3
Show file tree
Hide file tree
Showing 12 changed files with 20,580 additions and 4,796 deletions.
5 changes: 3 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ module.exports = {
plugins: ['vue'], // enable vue plugin
extends: ["plugin:vue/recommended", "prettier"], // activate vue related rules
parserOptions: {
"parser": "babel-eslint",
"ecmaVersion": 7,
"parser": "@babel/eslint-parser",
"ecmaVersion": 8,
"requireConfigFile": false,
"sourceType": "module",
"ecmaFeatures": {
"globalReturn": false,
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* vue-datatables-net
* Vue jQuery DataTables.net wrapper component
*
* @version v1.5.4
* @version v1.5.5
* @author [email protected]
* @repository https://github.com/niiknow/vue-datatables-net.git
*/
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"/index.js": "/index.js?id=d22b3d47870029a6c52b"
"/index.js": "/index.js?id=c3aea7f36e626df83718"
}
2 changes: 1 addition & 1 deletion example/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
</div>
<!-- Using the VdtnetTable component -->
<vdtnet-table
ref="table"
id="example"
ref="table"
:fields="fields"
:opts="options"
:select-checkbox="1"
Expand Down
17,895 changes: 17,079 additions & 816 deletions example/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion example/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion example/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"/index.js": "/index.js?id=ef3372d110db233def1e"
"/index.js": "/index.js?id=e93b352fc41712eafb65"
}
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<head>
<meta charset="utf-8">
<title>vue-datatables-net demo</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].0/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.24/css/dataTables.bootstrap4.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].1/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.25/css/dataTables.bootstrap4.min.css">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].12/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].14/dist/vue.js"></script>
</head>
<body>
<nav class="navbar navbar-light bg-light justify-content-between">
Expand Down
Loading

0 comments on commit 4b025a3

Please sign in to comment.