@imperosoft/cris-webui-components 1.2.0 → 1.2.1
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/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -770,11 +770,13 @@ function CrisSlider({
|
|
|
770
770
|
}
|
|
771
771
|
}
|
|
772
772
|
touchDecidedRef.current = false;
|
|
773
|
+
touchingRef.current = false;
|
|
773
774
|
};
|
|
774
775
|
const handleTouchCancel = () => {
|
|
775
776
|
touchEnd();
|
|
776
777
|
touchDecidedRef.current = false;
|
|
777
778
|
if (draggingRef.current) handleDragEnd();
|
|
779
|
+
touchingRef.current = false;
|
|
778
780
|
};
|
|
779
781
|
if (!isVisible) return null;
|
|
780
782
|
const containerClasses = [
|