@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.js
CHANGED
|
@@ -818,11 +818,13 @@ function CrisSlider({
|
|
|
818
818
|
}
|
|
819
819
|
}
|
|
820
820
|
touchDecidedRef.current = false;
|
|
821
|
+
touchingRef.current = false;
|
|
821
822
|
};
|
|
822
823
|
const handleTouchCancel = () => {
|
|
823
824
|
touchEnd();
|
|
824
825
|
touchDecidedRef.current = false;
|
|
825
826
|
if (draggingRef.current) handleDragEnd();
|
|
827
|
+
touchingRef.current = false;
|
|
826
828
|
};
|
|
827
829
|
if (!isVisible) return null;
|
|
828
830
|
const containerClasses = [
|