forked from epicmaxco/vuestic-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Progress Bar Improvements (epicmaxco#246)
* Change progress bar interface * Minor * Change interface and some styles * Add demo files * Minor changes * Minor changes
- Loading branch information
1 parent
83454c7
commit 984e8ff
Showing
15 changed files
with
513 additions
and
278 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
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
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 |
---|---|---|
|
@@ -13,7 +13,6 @@ | |
{{ $t(item.displayName) }} | ||
</router-link> | ||
</div> | ||
|
||
</vuestic-widget> | ||
</template> | ||
|
||
|
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
57 changes: 57 additions & 0 deletions
57
src/vuestic-theme/vuestic-components/vuestic-progress-bar/VuesticProgressBar.demo.vue
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,57 @@ | ||
<template> | ||
<div class="demo-container"> | ||
<div class="demo-container__item" style="width: 300px;"> | ||
<div class="row"> | ||
<div class="col-lg-4"> | ||
<vuestic-progress-bar | ||
:value="35" | ||
type="circle" | ||
theme="Warning" | ||
background-theme="White" | ||
/> | ||
</div> | ||
<div class="col-lg-4"> | ||
<vuestic-progress-bar | ||
:value="75" | ||
text="circle" | ||
type="circle" | ||
theme="Info" | ||
:animated="true" | ||
background-theme="White" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="demo-container__item" style="width: 300px"> | ||
<div class="row"> | ||
<div class="col-lg-4"> | ||
<vuestic-progress-bar :value="55" theme="Warning" type="vertical" size="thin"/> | ||
</div> | ||
<div class="col-lg-4"> | ||
<vuestic-progress-bar :value="40" theme="Danger" text="second" type="vertical"/> | ||
</div> | ||
<div class="col-lg-4"> | ||
<vuestic-progress-bar :value="85" theme="Info" type="vertical" size="thick" :animated="true"/> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="demo-container__item" style="width: 300px"> | ||
<vuestic-progress-bar :value="10" theme="Primary"/> | ||
<vuestic-progress-bar :value="30" theme="Info" text="blue" :animated="true"/> | ||
<vuestic-progress-bar :value="50" theme="Warning"/> | ||
<vuestic-progress-bar :value="70" theme="Danger" text="Text"/> | ||
<vuestic-progress-bar :value="90" theme="Success" :animated="true"/> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import VuesticProgressBar from './VuesticProgressBar' | ||
export default { | ||
components: { | ||
VuesticProgressBar, | ||
}, | ||
} | ||
</script> |
Oops, something went wrong.