uview-plus 3.4.34 → 3.4.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/changelog.md
CHANGED
|
@@ -62,6 +62,11 @@
|
|
|
62
62
|
style.width = this.lineWidth
|
|
63
63
|
style.backgroundColor = this.activeColor
|
|
64
64
|
style.height = addUnit(this.height)
|
|
65
|
+
if (this.fromRight) {
|
|
66
|
+
style.right = 0;
|
|
67
|
+
} else {
|
|
68
|
+
style.left = 0;
|
|
69
|
+
}
|
|
65
70
|
return style
|
|
66
71
|
},
|
|
67
72
|
innserPercentage() {
|
|
@@ -127,7 +132,6 @@
|
|
|
127
132
|
&__line {
|
|
128
133
|
position: absolute;
|
|
129
134
|
top: 0;
|
|
130
|
-
left: 0;
|
|
131
135
|
bottom: 0;
|
|
132
136
|
align-items: center;
|
|
133
137
|
@include flex(row);
|
package/package.json
CHANGED