uview-plus 3.3.56 → 3.3.58
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 +7 -0
- package/components/u-slider/u-slider.vue +3 -3
- package/libs/util/gcanvas/bridge/bridge-weex.js +0 -0
- package/libs/util/gcanvas/context-2d/FillStyleLinearGradient.js +0 -0
- package/libs/util/gcanvas/context-2d/FillStylePattern.js +0 -0
- package/libs/util/gcanvas/context-2d/FillStyleRadialGradient.js +0 -0
- package/libs/util/gcanvas/context-2d/RenderingContext.js +0 -0
- package/libs/util/gcanvas/context-webgl/ActiveInfo.js +0 -0
- package/libs/util/gcanvas/context-webgl/Buffer.js +0 -0
- package/libs/util/gcanvas/context-webgl/Framebuffer.js +0 -0
- package/libs/util/gcanvas/context-webgl/GLenum.js +0 -0
- package/libs/util/gcanvas/context-webgl/GLmethod.js +0 -0
- package/libs/util/gcanvas/context-webgl/GLtype.js +0 -0
- package/libs/util/gcanvas/context-webgl/Program.js +0 -0
- package/libs/util/gcanvas/context-webgl/Renderbuffer.js +0 -0
- package/libs/util/gcanvas/context-webgl/RenderingContext.js +0 -0
- package/libs/util/gcanvas/context-webgl/Shader.js +0 -0
- package/libs/util/gcanvas/context-webgl/ShaderPrecisionFormat.js +0 -0
- package/libs/util/gcanvas/context-webgl/Texture.js +0 -0
- package/libs/util/gcanvas/context-webgl/UniformLocation.js +0 -0
- package/libs/util/gcanvas/context-webgl/classUtils.js +0 -0
- package/libs/util/gcanvas/env/canvas.js +0 -0
- package/libs/util/gcanvas/env/image.js +0 -0
- package/libs/util/gcanvas/env/tool.js +0 -0
- package/libs/util/gcanvas/index.js +0 -0
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -269,7 +269,7 @@
|
|
|
269
269
|
this.newValue = ((this.distanceX / this.sliderRect.width) * (this.max - this.min)) + parseFloat(this.min);
|
|
270
270
|
this.status = 'moving';
|
|
271
271
|
// 发出moving事件
|
|
272
|
-
$crtFmtValue = this.updateValue(this.newValue, true, index);
|
|
272
|
+
let $crtFmtValue = this.updateValue(this.newValue, true, index);
|
|
273
273
|
this.$emit('changing', $crtFmtValue);
|
|
274
274
|
},
|
|
275
275
|
onTouchMove(event, index = 1) {
|
|
@@ -293,13 +293,13 @@
|
|
|
293
293
|
this.newValue = ((this.distanceX / this.sliderRect.width) * (this.max - this.min)) + parseFloat(this.min);
|
|
294
294
|
this.status = 'moving';
|
|
295
295
|
// 发出moving事件
|
|
296
|
-
$crtFmtValue = this.updateValue(this.newValue, true, index);
|
|
296
|
+
let $crtFmtValue = this.updateValue(this.newValue, true, index);
|
|
297
297
|
this.$emit('changing', $crtFmtValue);
|
|
298
298
|
},
|
|
299
299
|
onTouchEnd(event, index = 1) {
|
|
300
300
|
if (this.disabled) return;
|
|
301
301
|
if (this.status === 'moving') {
|
|
302
|
-
$crtFmtValue = this.updateValue(this.newValue, false, index);
|
|
302
|
+
let $crtFmtValue = this.updateValue(this.newValue, false, index);
|
|
303
303
|
this.$emit('change', $crtFmtValue);
|
|
304
304
|
}
|
|
305
305
|
this.status = 'end';
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED