-
Notifications
You must be signed in to change notification settings - Fork 868
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from maisamaf/feature/v1.1.3
feature/v1.1.3
- Loading branch information
Showing
170 changed files
with
8,818 additions
and
7,586 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
{ | ||
"presets": [ | ||
[ | ||
"@vue/app", | ||
{ | ||
"polyfills": ["es.promise", "es.symbol"], | ||
} | ||
] | ||
] | ||
"presets": [["@vue/app"]] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,9 @@ jobs: | |
autoclose: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Issue auto-closer | ||
uses: roots/[email protected] | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow the bellow rules:\n\n<pre>\n\n\n\nIMPORTANT: Please use the following link to create a new issue:\n\nhttps://www.creative-tim.com/new-issue/vue-black-dashboard\n\n**If your issue was not created using the app above, it will be closed immediately.**\n\n\n\nLove Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:\n👉 https://www.creative-tim.com/bundles\n👉 https://www.creative-tim.com\n\n\n</pre>\n\n" | ||
issue-pattern: (\#\#\# Version([\S\s.*]*?)\#\#\# Reproduction link([\S\s.*]*?)\#\#\# Operating System([\S\s.*]*?)\#\#\# Device([\S\s.*]*?)\#\#\# Browser & Version([\S\s.*]*?)\#\#\# Steps to reproduce([\S\s.*]*?)\#\#\# What is expected([\S\s.*]*?)\#\#\# What is actually happening([\S\s.*]*?)---([\S\s.*]*?)\#\#\# Solution([\S\s.*]*?)\#\#\# Additional comments([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)|(\#\#\# What is your enhancement([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>) | ||
- name: Issue auto-closer | ||
uses: roots/[email protected] | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow the bellow rules:\n\n<pre>\n\n\n\nIMPORTANT: Please use the following link to create a new issue:\n\nhttps://www.creative-tim.com/new-issue/vue-black-dashboard\n\n**If your issue was not created using the app above, it will be closed immediately.**\n\n\n\nLove Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:\n👉 https://www.creative-tim.com/bundles\n👉 https://www.creative-tim.com\n\n\n</pre>\n\n" | ||
issue-pattern: (\#\#\# Version([\S\s.*]*?)\#\#\# Reproduction link([\S\s.*]*?)\#\#\# Operating System([\S\s.*]*?)\#\#\# Device([\S\s.*]*?)\#\#\# Browser & Version([\S\s.*]*?)\#\#\# Steps to reproduce([\S\s.*]*?)\#\#\# What is expected([\S\s.*]*?)\#\#\# What is actually happening([\S\s.*]*?)---([\S\s.*]*?)\#\#\# Solution([\S\s.*]*?)\#\#\# Additional comments([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)|(\#\#\# What is your enhancement([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
legacy-peer-deps=true | ||
auto-install-peers=true | ||
strict-peer-dependencies=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
* Fork the repository | ||
* Clone it on your PC | ||
* `npm install` or `yarn install` | ||
* Make changes, commit open PR | ||
- Fork the repository | ||
- Clone it on your PC | ||
- `npm install` or `yarn install` | ||
- Make changes, commit open PR | ||
|
||
### Notes | ||
* Please don't use jQuery or jQuery based plugins since there are many pure Vue alternatives | ||
|
||
- Please don't use jQuery or jQuery based plugins since there are many pure Vue alternatives | ||
|
||
This project uses [vue-cli 3](https://github.com/vuejs/vue-cli). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
// This configuration file is not used anywhere in the code, it's a hack to handle InteliJ relative path imports | ||
// Keep in sync with actual webpack aliases | ||
|
||
const path = require('path'); | ||
const path = require("path"); | ||
|
||
module.exports = { | ||
resolve: { | ||
alias: { | ||
'@': path.resolve(__dirname, 'src') | ||
} | ||
} | ||
"@": path.resolve(__dirname, "src"), | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "vue-black-dashboard", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"private": true, | ||
"description": "A sample admin dashboard based on black dashboard UI template", | ||
"author": "cristian.jora <[email protected]>", | ||
|
@@ -10,27 +10,34 @@ | |
"e2e": "node test/e2e/runner.js", | ||
"lint": "vue-cli-service lint", | ||
"dev": "vue-cli-service serve --open", | ||
"lint-fix": "vue-cli-service lint --fix" | ||
"lint-fix": "vue-cli-service lint --fix", | ||
"prettify": "prettier --write ." | ||
}, | ||
"dependencies": { | ||
"chart.js": "^2.9.3", | ||
"eslint-plugin-vue": "^9.8.0", | ||
"chart.js": "2.9.4", | ||
"eslint-plugin-vue": "9.11.0", | ||
"register-service-worker": "^1.7.2", | ||
"vue": "^2.7.14", | ||
"vue": "2.7.14", | ||
"vue-chartjs": "3.5.1", | ||
"vue-i18n": "^8.18.2", | ||
"vue-i18n": "8.28.2", | ||
"vue-router": "3.6.5", | ||
"vue-router-prefetch": "^1.6.3", | ||
"vue2-transitions": "^0.3.0" | ||
"vue-router-prefetch": "1.6.3", | ||
"vue2-transitions": "0.3.0" | ||
}, | ||
"devDependencies": { | ||
"@vue/cli-plugin-babel": "4.5.19", | ||
"@vue/cli-plugin-eslint": "4.5.19", | ||
"@vue/cli-plugin-pwa": "4.5.19", | ||
"@vue/cli-service": "4.5.19", | ||
"sass": "1.56.2", | ||
"@vue/cli-plugin-babel": "5.0.8", | ||
"@vue/cli-plugin-eslint": "5.0.8", | ||
"@vue/cli-plugin-pwa": "5.0.8", | ||
"@vue/cli-service": "5.0.8", | ||
"@vue/eslint-config-prettier": "7.1.0", | ||
"@babel/eslint-parser": "7.21.8", | ||
"eslint": "8.41.0", | ||
"eslint-plugin-prettier": "4.2.1", | ||
"eslint-plugin-vue": "9.14.1", | ||
"prettier": "2.8.8", | ||
"sass": "1.62.1", | ||
"sass-loader": "10.2.0", | ||
"vue-cli-plugin-i18n": "2.3.1", | ||
"vue-cli-plugin-i18n": "2.3.2", | ||
"vue-template-compiler": "2.7.14" | ||
}, | ||
"browserslist": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.