![Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility](https://cdn.sanity.io/images/cgdhsj6q/production/97774ea8c88cc8f4bed2766c31994ebc38116948-1664x1366.png?w=400&fit=max&auto=format)
Security News
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
react-fastclick-alt
Advanced tools
A react component that triggers click and focus events for taps of children components
Wrapper <span/>
that implements the FastClick logic in its touch events, triggering appropriate click and focus events on
its children if it detects a 'tap'.
npm install --save-dev react-fastclick-alt
Wrap your component in an instance of this component, and it should respond to short taps with immediate click events.
import React from 'react';
import FastClick from 'react-fastclick-alt';
import ReactDOM from 'react-dom';
ReactDOM.render(<FastClick><MyApp/></FastClick>, document.getElementById('app'));
Note this is safe to do even if child components also render react-fastclick-alt
because a touchend
event that triggers
a click will not be propagated (i.e. event.stopPropagation()
is called when a tap is detected)
There are two optional props to this component:
How far a touch can move before it can no longer be converted to a click, in px. Defaults to 15px.
How long a tap can be held before it can no longer be converted to a click, in milliseconds. Defaults to 125ms.
FAQs
A react component that triggers click and focus events for taps of children components
The npm package react-fastclick-alt receives a total of 315 weekly downloads. As such, react-fastclick-alt popularity was classified as not popular.
We found that react-fastclick-alt demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
Security News
React's CRA deprecation announcement sparked community criticism over framework recommendations, leading to quick updates acknowledging build tools like Vite as valid alternatives.
Security News
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.