
Security News
Research
Destructive npm Packages Disguised as Utilities Enable Remote System Wipe
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.
@react-aria/utils
Advanced tools
The @react-aria/utils package provides a collection of utility functions that help in managing accessibility concerns in React applications. These utilities assist in handling keyboard, focus, and selection behaviors, making it easier to build accessible UI components.
Focus Management
This feature allows you to focus an element without causing the browser to scroll to it, which can be useful in maintaining the user's scroll position while programmatically moving focus.
import { focusWithoutScrolling } from '@react-aria/utils';
function handleFocus(element) {
focusWithoutScrolling(element);
}
Keyboard Event Handling
This utility helps in filtering out non-DOM properties from props, ensuring that only valid HTML attributes are passed to the DOM element, thus preventing React warnings and improving HTML output.
import { filterDOMProps } from '@react-aria/utils';
function Button(props) {
return <button {...filterDOMProps(props)}>Click me</button>;
}
Merge Props
Merge props from different sources, typically used to combine default and user-provided props in a component. It ensures that event handlers and other attributes are correctly combined and overridden if necessary.
import { mergeProps } from '@react-aria/utils';
function mergeComponentProps(userProps, defaultProps) {
return mergeProps(defaultProps, userProps);
}
Downshift is a library that provides primitives to build simple, flexible, WAI-ARIA compliant enhanced input React components. Its focus on accessibility and functionality related to dropdowns and comboboxes makes it similar but more specialized compared to the broad utility focus of @react-aria/utils.
React-focus-lock provides a robust solution for trapping focus within a DOM node, which is crucial for building accessible modal dialogs. While it focuses specifically on focus management, @react-aria/utils offers this alongside other utilities, making it more versatile.
This package is part of react-spectrum. See the repo for more details.
FAQs
Spectrum UI components in React
The npm package @react-aria/utils receives a total of 3,605,883 weekly downloads. As such, @react-aria/utils popularity was classified as popular.
We found that @react-aria/utils demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.
Research
Security News
Malicious Ruby gems typosquat Fastlane plugins to steal Telegram bot tokens, messages, and files, exploiting demand after Vietnam’s Telegram ban.
Research
Security News
Socket uncovered four malicious npm packages that exfiltrate up to 85% of a victim’s Ethereum or BSC wallet using obfuscated JavaScript.