🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

@react-aria/focus

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
r

@react-aria/focus

Spectrum UI components in React

3.20.3
latest
100

Supply Chain Security

100

Vulnerability

72

Quality

97

Maintenance

80

License

Version published
Weekly downloads
3.6M
3.91%
Maintainers
2
Weekly downloads
 
Created
Issues
698

What is @react-aria/focus?

@react-aria/focus is a library that provides accessible focus management utilities for React applications. It helps in managing focus behavior in a way that is compliant with accessibility standards.

What are @react-aria/focus's main functionalities?

useFocusRing

The `useFocusRing` hook provides a way to apply focus styles to an element when it is focused. It returns properties to spread on the element and a boolean indicating if the focus is visible.

import { useFocusRing } from '@react-aria/focus';

function MyComponent() {
  let { isFocusVisible, focusProps } = useFocusRing();
  return (
    <button {...focusProps} style={{ outline: isFocusVisible ? '2px solid blue' : 'none' }}>
      Click me
    </button>
  );
}

FocusScope

The `FocusScope` component manages focus within a contained area. It ensures that focus stays within the scope and can restore focus to the previously focused element when the scope is unmounted.

import { FocusScope } from '@react-aria/focus';

function MyComponent() {
  return (
    <FocusScope contain restoreFocus autoFocus>
      <input placeholder="First input" />
      <input placeholder="Second input" />
    </FocusScope>
  );
}

useFocusWithin

The `useFocusWithin` hook provides a way to detect if any element within a container has focus. It returns properties to spread on the container and a boolean indicating if focus is within the container.

import { useFocusWithin } from '@react-aria/focus';

function MyComponent() {
  let { isFocusWithin, focusWithinProps } = useFocusWithin();
  return (
    <div {...focusWithinProps} style={{ border: isFocusWithin ? '2px solid green' : 'none' }}>
      <input placeholder="Focus within me" />
    </div>
  );
}

Other packages similar to @react-aria/focus

FAQs

Package last updated on 19 May 2025

Did you know?

Socket

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.

Install

Related posts