update libraries for better keyboard use.

This commit is contained in:
James Cole 2020-03-15 15:17:07 +01:00
parent d7e953d38c
commit 9d90beb790
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
18 changed files with 302 additions and 336 deletions

View File

@ -165,7 +165,7 @@ class BudgetLimitController extends Controller
$data = $request->getAll();
$budget = $this->repository->findNull($data['budget_id']);
if (null === $budget) {
throw new FireflyException('200004: Budget does not exist.');
throw new FireflyException('200004: Budget does not exist.'); // @codeCoverageIgnore
}
$data['budget'] = $budget;
$budgetLimit = $this->blRepository->storeBudgetLimit($data);

View File

@ -90,8 +90,8 @@ class CategoryController extends Controller
$tempData = [];
$spentWith = $this->opsRepository->listExpenses($start, $end);
$earnedWith = $this->opsRepository->listIncome($start, $end);
$spentWithout = $this->noCatRepository->listExpenses($start, $end); // refactored
$earnedWithout = $this->noCatRepository->listIncome($start, $end); // refactored
$spentWithout = $this->noCatRepository->listExpenses($start, $end);
$earnedWithout = $this->noCatRepository->listIncome($start, $end);
$categories = [];

View File

@ -401,7 +401,7 @@ class Request extends FormRequest
if (is_numeric($type)) {
$type = (int)$type;
}
if (0 === $type || 'none' === $type) {
if (0 === $type || 'none' === $type || '' === $type) {
return;
}
// basic float check:

View File

@ -15,12 +15,11 @@
"bootstrap-sass": "^3.3.7",
"cross-env": "^5.1",
"font-awesome": "^4.7.0",
"jquery": "^3.1.1",
"laravel-mix": "^4.1.2",
"laravel-mix-bundle-analyzer": "^1.0.5",
"uiv": "^0.31.5",
"vue": "^2.6.10",
"vue-i18n": "^8.14.1",
"vue-template-compiler": "^2.6.10"
"jquery": "^3.4.1",
"laravel-mix": "^5.0",
"uiv": "^0.34",
"vue": "^2.6",
"vue-i18n": "^8.15",
"vue-template-compiler": "^2.6.11"
}
}

1
public/v1/js/app.js vendored

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,30 @@
/*!
* Bootstrap v3.4.1 (https://getbootstrap.com/)
* Copyright 2011-2019 Twitter, Inc.
* Licensed under the MIT license
*/
/*!
* Sizzle CSS Selector Engine v2.3.4
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://js.foundation/
*
* Date: 2019-04-08
*/
/*!
* jQuery JavaScript Library v3.4.1
* https://jquery.com/
*
* Includes Sizzle.js
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://jquery.org/license
*
* Date: 2019-05-01T21:04Z
*/

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,5 @@
/*!
* Vue.js v2.6.11
* (c) 2014-2019 Evan You
* Released under the MIT License.
*/

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,6 @@
/*!
* Determine if an object is a Buffer
*
* @author Feross Aboukhadijeh <https://feross.org>
* @license MIT
*/

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,6 @@
/*!
* Determine if an object is a Buffer
*
* @author Feross Aboukhadijeh <https://feross.org>
* @license MIT
*/

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,6 @@
/*!
* Determine if an object is a Buffer
*
* @author Feross Aboukhadijeh <https://feross.org>
* @license MIT
*/

View File

@ -197,7 +197,7 @@
handleEnter: function (e) {
// todo feels sloppy
if (e.keyCode === 13) {
e.preventDefault();
//e.preventDefault();
}
}
}

View File

@ -124,7 +124,7 @@
handleEnter: function (e) {
// todo feels sloppy
if (e.keyCode === 13) {
e.preventDefault();
//e.preventDefault();
}
}
}

View File

@ -68,6 +68,7 @@
mounted() {
this.target = this.$refs.descr;
this.descriptionAutoCompleteURI = document.getElementsByTagName('base')[0].href + "json/transaction-journals/all?search=";
this.$refs.descr.focus();
},
components: {
},
@ -101,7 +102,7 @@
// todo feels sloppy
if (e.keyCode === 13) {
e.preventDefault();
//e.preventDefault();
}
},
selectedItem: function (e) {

546
yarn.lock

File diff suppressed because it is too large Load Diff