-
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 #53 from maisamaf/feature/v1.1.2
feature/v1.1.2
- Loading branch information
Showing
9 changed files
with
94 additions
and
9,131 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
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,5 +1,7 @@ | ||
.DS_Store | ||
node_modules/ | ||
package-lock.json | ||
yarn.lock | ||
npm-debug.log | ||
.idea/ | ||
dist/ |
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,23 +1,32 @@ | ||
# Change Log | ||
|
||
## [1.1.2] 2022-01-10 | ||
|
||
- Update dependencies and devDependencies | ||
- Migration from `node-sass` to `sass` | ||
|
||
## [1.1.1] 2020-06-26 | ||
|
||
- Package updates | ||
|
||
## [1.1.0] 2019-02-12 | ||
|
||
- Package updates | ||
- Add pwa support | ||
- Improve accessibility | ||
- Cleanups & other minor UI improvements | ||
- Improve bundle size | ||
|
||
## [1.0.1] 2018-12-03 | ||
|
||
### Minor updates | ||
|
||
- Upgrade packages | ||
- Change sidebar gradient colors (more pleasant) | ||
- Make links "bolder" in the sidebar so they are more readable | ||
- Improve bundle size, add vue-router prefetch | ||
- Add pwa support | ||
|
||
|
||
## [1.0.0] 2018-10-14 | ||
|
||
### Stable Original Release |
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
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.0.0", | ||
"version": "1.1.2", | ||
"private": true, | ||
"description": "A sample admin dashboard based on black dashboard UI template", | ||
"author": "cristian.jora <[email protected]>", | ||
|
@@ -14,23 +14,24 @@ | |
}, | ||
"dependencies": { | ||
"chart.js": "^2.9.3", | ||
"register-service-worker": "^1.7.1", | ||
"vue": "^2.6.11", | ||
"vue-chartjs": "^3.5.0", | ||
"eslint-plugin-vue": "^9.8.0", | ||
"register-service-worker": "^1.7.2", | ||
"vue": "^2.7.14", | ||
"vue-chartjs": "3.5.1", | ||
"vue-i18n": "^8.18.2", | ||
"vue-router": "^3.3.4", | ||
"vue-router-prefetch": "^1.6.0", | ||
"vue-router": "3.6.5", | ||
"vue-router-prefetch": "^1.6.3", | ||
"vue2-transitions": "^0.3.0" | ||
}, | ||
"devDependencies": { | ||
"@vue/cli-plugin-babel": "^4.4.6", | ||
"@vue/cli-plugin-eslint": "^4.4.6", | ||
"@vue/cli-plugin-pwa": "^4.4.6", | ||
"@vue/cli-service": "^4.4.6", | ||
"node-sass": "^4.14.1", | ||
"sass-loader": "^8.0.2", | ||
"vue-cli-plugin-i18n": "^1.0.1", | ||
"vue-template-compiler": "^2.6.11" | ||
"@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", | ||
"sass-loader": "10.2.0", | ||
"vue-cli-plugin-i18n": "2.3.1", | ||
"vue-template-compiler": "2.7.14" | ||
}, | ||
"browserslist": [ | ||
"> 1%", | ||
|
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,95 +1,107 @@ | ||
<!-- eslint-disable vue/no-mutating-props --> | ||
<template> | ||
<card> | ||
<h5 slot="header" class="title">Edit Profile</h5> | ||
<div class="row"> | ||
<div class="col-md-5 pr-md-1"> | ||
<base-input label="Company (disabled)" | ||
placeholder="Company" | ||
v-model="model.company" | ||
disabled> | ||
<base-input | ||
label="Company (disabled)" | ||
placeholder="Company" | ||
v-model="model.company" | ||
disabled | ||
> | ||
</base-input> | ||
</div> | ||
<div class="col-md-3 px-md-1"> | ||
<base-input label="Username" | ||
placeholder="Username" | ||
v-model="model.username"> | ||
<base-input | ||
label="Username" | ||
placeholder="Username" | ||
v-model="model.username" | ||
> | ||
</base-input> | ||
</div> | ||
<div class="col-md-4 pl-md-1"> | ||
<base-input label="Email address" | ||
type="email" | ||
placeholder="[email protected]"> | ||
<base-input | ||
label="Email address" | ||
type="email" | ||
placeholder="[email protected]" | ||
> | ||
</base-input> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-6 pr-md-1"> | ||
<base-input label="First Name" | ||
v-model="model.firstName" | ||
placeholder="First Name"> | ||
<base-input | ||
label="First Name" | ||
v-model="model.firstName" | ||
placeholder="First Name" | ||
> | ||
</base-input> | ||
</div> | ||
<div class="col-md-6 pl-md-1"> | ||
<base-input label="Last Name" | ||
v-model="model.lastName" | ||
placeholder="Last Name"> | ||
<base-input | ||
label="Last Name" | ||
v-model="model.lastName" | ||
placeholder="Last Name" | ||
> | ||
</base-input> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<base-input label="Address" | ||
v-model="model.address" | ||
placeholder="Home Address"> | ||
<base-input | ||
label="Address" | ||
v-model="model.address" | ||
placeholder="Home Address" | ||
> | ||
</base-input> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4 pr-md-1"> | ||
<base-input label="City" | ||
v-model="model.city" | ||
placeholder="City"> | ||
<base-input label="City" v-model="model.city" placeholder="City"> | ||
</base-input> | ||
</div> | ||
<div class="col-md-4 px-md-1"> | ||
<base-input label="Country" | ||
v-model="model.country" | ||
placeholder="Country"> | ||
<base-input | ||
label="Country" | ||
v-model="model.country" | ||
placeholder="Country" | ||
> | ||
</base-input> | ||
</div> | ||
<div class="col-md-4 pl-md-1"> | ||
<base-input label="Postal Code" | ||
placeholder="ZIP Code"> | ||
</base-input> | ||
<base-input label="Postal Code" placeholder="ZIP Code"> </base-input> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-8"> | ||
<base-input> | ||
<label>About Me</label> | ||
<textarea rows="4" cols="80" | ||
class="form-control" | ||
placeholder="Here can be your description" | ||
v-model="model.about"> | ||
|
||
</textarea> | ||
<textarea | ||
rows="4" | ||
cols="80" | ||
class="form-control" | ||
placeholder="Here can be your description" | ||
v-model="model.about" | ||
> | ||
</textarea> | ||
</base-input> | ||
</div> | ||
</div> | ||
<base-button slot="footer" type="primary" fill>Save</base-button> | ||
</card> | ||
</template> | ||
<script> | ||
export default { | ||
props: { | ||
model: { | ||
type: Object, | ||
default: () => { | ||
return {}; | ||
} | ||
export default { | ||
props: { | ||
model: { | ||
type: Object, | ||
default: () => { | ||
return {}; | ||
} | ||
} | ||
} | ||
}; | ||
</script> | ||
<style> | ||
</style> | ||
<style></style> |
Oops, something went wrong.