refactor: /wallet tweaks

This commit is contained in:
Eneko Illarramendi
2020-04-01 22:18:46 +02:00
parent d03785558b
commit 649cc888ab
15 changed files with 628 additions and 419 deletions
@@ -1,5 +1,5 @@
/*!
* Quasar Framework v1.9.7
* Quasar Framework v1.9.12
* (c) 2015-present Razvan Stoenescu
* Released under the MIT License.
*/
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,6 +1,6 @@
/**
* vuex v3.1.2
* (c) 2019 Evan You
* vuex v3.1.3
* (c) 2020 Evan You
* @license MIT
*/
(function (global, factory) {
@@ -398,7 +398,10 @@
handler(payload);
});
});
this._subscribers.forEach(function (sub) { return sub(mutation, this$1.state); });
this._subscribers
.slice() // shallow copy to prevent iterator invalidation if subscriber synchronously calls unsubscribe
.forEach(function (sub) { return sub(mutation, this$1.state); });
if (
options && options.silent
@@ -429,6 +432,7 @@
try {
this._actionSubscribers
.slice() // shallow copy to prevent iterator invalidation if subscriber synchronously calls unsubscribe
.filter(function (sub) { return sub.before; })
.forEach(function (sub) { return sub.before(action, this$1.state); });
} catch (e) {
@@ -797,9 +801,7 @@
}
function getNestedState (state, path) {
return path.length
? path.reduce(function (state, key) { return state[key]; }, state)
: state
return path.reduce(function (state, key) { return state[key]; }, state)
}
function unifyObjectStyle (type, payload, options) {
@@ -1042,7 +1044,7 @@
var index = {
Store: Store,
install: install,
version: '3.1.2',
version: '3.1.3',
mapState: mapState,
mapMutations: mapMutations,
mapGetters: mapGetters,
File diff suppressed because one or more lines are too long