react-native-resource-calendar 1.1.3 → 1.1.4

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.mjs CHANGED
@@ -779,10 +779,10 @@ var EventGridBlocksSkia = ({
779
779
  const onTouchesUp = React19.useCallback(() => {
780
780
  setPressedRow(null);
781
781
  }, []);
782
- const longPressGesture = Gesture.LongPress().onBegin((e) => {
782
+ const longPressGesture = Gesture.LongPress().minDuration(350).onBegin((e) => {
783
783
  "worklet";
784
784
  scheduleOnRN(onPressBegin, Math.floor(e.y / rowHeight));
785
- }).onEnd((e) => {
785
+ }).onStart((e) => {
786
786
  "worklet";
787
787
  scheduleOnRN(onSlotLongPress, Math.floor(e.y / rowHeight));
788
788
  }).onTouchesUp(() => {