diff --git a/.eslintrc.js b/.eslintrc.js index 3f681ed..a32b94b 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -5,10 +5,11 @@ module.exports = { }, extends: ["plugin:vue/vue3-essential", "eslint:recommended", "@vue/prettier"], parserOptions: { - parser: "babel-eslint" + parser: "@babel/eslint-parser" }, rules: { "prettier/prettier": "off", + "vue/multi-word-component-names": "off", "no-console": process.env.NODE_ENV === "production" ? "warn" : "off", "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off" } diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..5c6c958 --- /dev/null +++ b/.npmrc @@ -0,0 +1,3 @@ +legacy-peer-deps=true +auto-install-peers=true +strict-peer-dependencies=false \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ace6c1..4dbaaff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [4.0.0] 2023-07-07 + +- Update dependencies & devDependencies +- Refactor code from `options api` to `composition api` +- Add Support for `v-model` to the `SoftInput` + ## [3.0.0] 2022-06-24 - Renamed components name prefix from Vsud to Soft. diff --git a/README.md b/README.md index 5bc5a92..2ec8790 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # [Vue Soft UI Dashboard](http://demos.creative-tim.com/vue-soft-ui-dashboard/?ref=readme-vsud) [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social&logo=twitter)](https://twitter.com/intent/tweet?url=https://www.creative-tim.com/product/vue-soft-ui-dashboard&text=Check%20Vue%20Soft%20UI%20Dashboard%20made%20by%20@CreativeTim%20#webdesign%20#dashboard%20#softdesign%20#vue%20https://www.creative-tim.com/product/vue-soft-ui-dashboard) -![version](https://img.shields.io/badge/version-3.0.0-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/creativetimofficial/vue-soft-ui-dashboard.svg)](https://github.com/creativetimofficial/vue-soft-ui-dashboard/issues?q=is%3Aopen+is%3Aissue) [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/creativetimofficial/vue-soft-ui-dashboard.svg)](https://github.com/creativetimofficial/vue-soft-ui-dashboard/issues?q=is%3Aissue+is%3Aclosed) +![version](https://img.shields.io/badge/version-4.0.0-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/creativetimofficial/vue-soft-ui-dashboard.svg)](https://github.com/creativetimofficial/vue-soft-ui-dashboard/issues?q=is%3Aopen+is%3Aissue) [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/creativetimofficial/vue-soft-ui-dashboard.svg)](https://github.com/creativetimofficial/vue-soft-ui-dashboard/issues?q=is%3Aissue+is%3Aclosed) ![Image](https://s3.amazonaws.com/creativetim_bucket/products/591/original/vue-soft-ui-dashboard.jpg) diff --git a/package.json b/package.json index 7a11be2..50aea1a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-soft-ui-dashboard", - "version": "3.0.0", + "version": "4.0.0", "private": true, "author": "Creative Tim", "license": "SEE LICENSE IN ", @@ -19,33 +19,33 @@ "lint": "vue-cli-service lint" }, "dependencies": { - "@fortawesome/fontawesome-svg-core": "^6.1.1", - "@fortawesome/free-brands-svg-icons": "^6.1.1", - "@fortawesome/free-solid-svg-icons": "^6.1.1", - "@fortawesome/vue-fontawesome": "^3.0.0-5", - "@popperjs/core": "2.10.2", - "bootstrap": "5.1.3", - "chart.js": "3.6.0", - "core-js": "3.6.5", - "jkanban": "^1.3.1", - "vue": "3.2.0", - "vue-flatpickr-component": "9.0.5", - "vue-router": "^4.0.0-0", - "vuex": "^4.0.2" + "@fortawesome/fontawesome-svg-core": "6.4.0", + "@fortawesome/free-brands-svg-icons": "6.4.0", + "@fortawesome/free-solid-svg-icons": "6.4.0", + "@fortawesome/vue-fontawesome": "3.0.3", + "@popperjs/core": "2.11.8", + "bootstrap": "5.3.0", + "chart.js": "4.3.0", + "core-js": "3.31.1", + "jkanban": "1.3.1", + "vue": "3.3.4", + "vue-flatpickr-component": "11.0.3", + "vue-router": "4.2.4", + "vuex": "4.1.0" }, "devDependencies": { - "@vue/cli-plugin-babel": "~4.5.0", - "@vue/cli-plugin-eslint": "~4.5.0", - "@vue/cli-plugin-router": "~4.5.0", - "@vue/cli-service": "~4.5.0", - "@vue/compiler-sfc": "3.2.0", - "@vue/eslint-config-prettier": "6.0.0", - "babel-eslint": "10.1.0", - "eslint": "6.7.2", - "eslint-plugin-prettier": "3.3.1", - "eslint-plugin-vue": "7.0.0", - "prettier": "2.2.1", - "sass": "1.43.3", - "sass-loader": "10.1.1" + "@vue/cli-plugin-babel": "5.0.8", + "@vue/cli-plugin-eslint": "5.0.8", + "@vue/cli-plugin-router": "5.0.8", + "@vue/cli-service": "5.0.8", + "@vue/compiler-sfc": "3.3.4", + "@vue/eslint-config-prettier": "7.1.0", + "@babel/eslint-parser": "7.22.7", + "eslint": "8.44.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-vue": "9.15.1", + "prettier": "3.0.0", + "sass": "1.63.6", + "sass-loader": "13.3.2" } } diff --git a/public/index.html b/public/index.html index a577d20..41dabcb 100644 --- a/public/index.html +++ b/public/index.html @@ -1,10 +1,10 @@ - + @@ -36,10 +36,14 @@ href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" /> - + - +