Compare commits

...

3 Commits

Author SHA1 Message Date
e069d52544 Fixes: Style compatibility and gradient exceptions 2019-08-27 10:21:42 +08:00
4bd17d0a07 update version to 2.3.8 2019-08-27 10:21:02 +08:00
a1edd0d6f2 update change log for v 2.3.8 2019-08-27 10:20:52 +08:00
5 changed files with 28 additions and 5 deletions

View File

@ -1,3 +1,9 @@
# 2.3.8-alpha (2019-08-27)
### Bug Fixes
- **percentPond:** Style compatibility and gradient exceptions.
# 2.3.7-alpha (2019-08-26)
### Bug Fixes

View File

@ -1,7 +1,15 @@
.dv-percent-pond {
position: relative;
display: flex;
flex-direction: column;
}
.dv-percent-pond svg {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
}
.dv-percent-pond polyline {
transition: all 0.3s;
}

View File

@ -4,13 +4,13 @@
<defs>
<linearGradient :id="gradientId1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop v-for="lc in linearGradient" :key="lc[0]"
:offset="lc[0]"
:offset="`${lc[0]}%`"
:stop-color="lc[1]" />
</linearGradient>
<linearGradient :id="gradientId2" x1="0%" y1="0%" :x2="gradient2XPos" y2="0%">
<stop v-for="lc in linearGradient" :key="lc[0]"
:offset="lc[0]"
:offset="`${lc[0]}%`"
:stop-color="lc[1]" />
</linearGradient>
</defs>

View File

@ -1,6 +1,6 @@
{
"name": "@jiaminghi/data-view",
"version": "2.3.7",
"version": "2.3.8",
"author": "JiaMing <743192023@qq.com>",
"description": "Vue Large screen data display component library",
"main": "lib/index.js",

View File

@ -4,13 +4,13 @@
<defs>
<linearGradient :id="gradientId1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop v-for="lc in linearGradient" :key="lc[0]"
:offset="lc[0]"
:offset="`${lc[0]}%`"
:stop-color="lc[1]" />
</linearGradient>
<linearGradient :id="gradientId2" x1="0%" y1="0%" :x2="gradient2XPos" y2="0%">
<stop v-for="lc in linearGradient" :key="lc[0]"
:offset="lc[0]"
:offset="`${lc[0]}%`"
:stop-color="lc[1]" />
</linearGradient>
</defs>
@ -254,9 +254,18 @@ export default {
<style lang="less">
.dv-percent-pond {
position: relative;
display: flex;
flex-direction: column;
svg {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
}
polyline {
transition: all 0.3s;
}