Updated all plugins and dependencies, had to modify currency and decimal controls due to renaming of parseCurrency method to getValue in vue-currency-input
This commit is contained in:
3771
ayanova/package-lock.json
generated
3771
ayanova/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -13,55 +13,55 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"chart.js": "^2.9.3",
|
||||
"chartjs-adapter-luxon": "^0.2.1",
|
||||
"chartjs-adapter-luxon": "^0.2.2",
|
||||
"core-js": "^3.6.5",
|
||||
"dompurify": "^2.0.11",
|
||||
"dompurify": "^2.0.16",
|
||||
"github-markdown-css": "^4.0.0",
|
||||
"jwt-decode": "^2.2.0",
|
||||
"luxon": "^1.24.1",
|
||||
"luxon": "^1.25.0",
|
||||
"marked": "^0.8.2",
|
||||
"monaco-editor": "^0.20.0",
|
||||
"monaco-editor-webpack-plugin": "^1.9.0",
|
||||
"nprogress": "^0.2.0",
|
||||
"register-service-worker": "^1.7.1",
|
||||
"typeface-roboto": "0.0.75",
|
||||
"vue": "^2.6.11",
|
||||
"vue-chartjs": "^3.5.0",
|
||||
"vue-currency-input": "^1.19.0",
|
||||
"vue-router": "^3.3.4",
|
||||
"vuetify": "^2.3.0",
|
||||
"vuex": "^3.4.0",
|
||||
"vue": "^2.6.12",
|
||||
"vue-chartjs": "^3.5.1",
|
||||
"vue-currency-input": "^1.22.3",
|
||||
"vue-router": "^3.4.3",
|
||||
"vuetify": "^2.3.10",
|
||||
"vuex": "^3.5.1",
|
||||
"vuex-persistedstate": "^2.7.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@cypress/webpack-preprocessor": "^4.1.5",
|
||||
"@fortawesome/fontawesome-free": "^5.13.0",
|
||||
"@vue/cli-plugin-babel": "^4.4.4",
|
||||
"@vue/cli-plugin-e2e-cypress": "^4.4.4",
|
||||
"@vue/cli-plugin-eslint": "^4.4.4",
|
||||
"@vue/cli-plugin-pwa": "^4.4.4",
|
||||
"@vue/cli-plugin-router": "^4.4.4",
|
||||
"@vue/cli-plugin-unit-jest": "^4.4.4",
|
||||
"@vue/cli-plugin-vuex": "^4.4.4",
|
||||
"@vue/cli-service": "^4.4.4",
|
||||
"@fortawesome/fontawesome-free": "^5.14.0",
|
||||
"@vue/cli-plugin-babel": "^4.5.6",
|
||||
"@vue/cli-plugin-e2e-cypress": "^4.5.6",
|
||||
"@vue/cli-plugin-eslint": "^4.5.6",
|
||||
"@vue/cli-plugin-pwa": "^4.5.6",
|
||||
"@vue/cli-plugin-router": "^4.5.6",
|
||||
"@vue/cli-plugin-unit-jest": "^4.5.6",
|
||||
"@vue/cli-plugin-vuex": "^4.5.6",
|
||||
"@vue/cli-service": "^4.5.6",
|
||||
"@vue/eslint-config-prettier": "^6.0.0",
|
||||
"@vue/test-utils": "^1.0.3",
|
||||
"@vue/test-utils": "^1.1.0",
|
||||
"babel-core": "6.26.3",
|
||||
"babel-eslint": "^10.1.0",
|
||||
"babel-jest": "^24.9.0",
|
||||
"deepmerge": "^4.2.2",
|
||||
"eslint": "^6.8.0",
|
||||
"eslint-plugin-prettier": "^3.1.3",
|
||||
"eslint-plugin-prettier": "^3.1.4",
|
||||
"eslint-plugin-vue": "^6.2.2",
|
||||
"fibers": "^4.0.3",
|
||||
"prettier": "^1.19.1",
|
||||
"sass": "^1.26.8",
|
||||
"sass": "^1.26.11",
|
||||
"sass-loader": "^8.0.2",
|
||||
"vue-cli-plugin-vuetify": "^2.0.5",
|
||||
"vue-template-compiler": "^2.6.11",
|
||||
"vuetify-loader": "^1.5.0",
|
||||
"webpack": "^4.43.0",
|
||||
"webpack-cli": "^3.3.11"
|
||||
"vue-cli-plugin-vuetify": "^2.0.7",
|
||||
"vue-template-compiler": "^2.6.12",
|
||||
"vuetify-loader": "^1.6.0",
|
||||
"webpack": "^4.44.2",
|
||||
"webpack-cli": "^3.3.12"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"root": true,
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
//https://dm4t2.github.io/vue-currency-input/guide/#introduction :value="formattedValue"
|
||||
//https://codesandbox.io/s/vue-template-kd7d1?fontsize=14&module=%2Fsrc%2FApp.vue
|
||||
//https://github.com/dm4t2/vue-currency-input
|
||||
import { setValue, parseCurrency } from "vue-currency-input";
|
||||
import { setValue, getValue } from "vue-currency-input";
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
@@ -50,7 +50,7 @@ export default {
|
||||
methods: {
|
||||
updateValue() {
|
||||
let val = this.$refs.textField.$refs.input.value;
|
||||
let parsedValue = parseCurrency(val, {
|
||||
let parsedValue = getValue(val, {
|
||||
currency: this.currencyName,
|
||||
locale: this.languageName
|
||||
});
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
//https://codesandbox.io/s/vue-template-kd7d1?fontsize=14&module=%2Fsrc%2FApp.vue
|
||||
//https://github.com/dm4t2/vue-currency-input
|
||||
//NON CURRENCY MODE: https://dm4t2.github.io/vue-currency-input/config/#component
|
||||
import { setValue, parseCurrency } from "vue-currency-input";
|
||||
import { setValue, getValue } from "vue-currency-input";
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
@@ -51,7 +51,7 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
handleInput(value) {
|
||||
let parsedValue = parseCurrency(value, {
|
||||
let parsedValue = getValue(value, {
|
||||
currency: null,
|
||||
locale: this.languageName
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user