Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@react-aria/slider
Advanced tools
@react-aria/slider is a React library that provides accessible slider components. It is part of the React Aria collection of hooks and components that help build accessible web applications. The package offers a range of features to create sliders that are keyboard navigable and screen reader friendly.
Single Slider
This code demonstrates how to create a single slider using @react-aria/slider. It includes the necessary hooks and components to ensure the slider is accessible.
import { useSlider, useSliderThumb } from '@react-aria/slider';
import { useSliderState } from '@react-stately/slider';
import { VisuallyHidden } from '@react-aria/visually-hidden';
import { useRef } from 'react';
function SingleSlider(props) {
let trackRef = useRef(null);
let state = useSliderState(props);
let { groupProps, trackProps, thumbProps } = useSlider(props, state, trackRef);
let { thumbProps: thumbProps0, inputProps: inputProps0 } = useSliderThumb({ index: 0 }, state);
return (
<div {...groupProps}>
<div {...trackProps} ref={trackRef} style={{ position: 'relative', height: '4px', background: 'gray' }}>
<div {...thumbProps0} style={{ position: 'absolute', top: '-6px', left: `${state.getThumbPercent(0) * 100}%`, width: '20px', height: '20px', background: 'blue' }}>
<VisuallyHidden>
<input {...inputProps0} />
</VisuallyHidden>
</div>
</div>
</div>
);
}
Range Slider
This code demonstrates how to create a range slider with two thumbs using @react-aria/slider. It ensures both thumbs are accessible and can be controlled via keyboard and screen readers.
import { useSlider, useSliderThumb } from '@react-aria/slider';
import { useSliderState } from '@react-stately/slider';
import { VisuallyHidden } from '@react-aria/visually-hidden';
import { useRef } from 'react';
function RangeSlider(props) {
let trackRef = useRef(null);
let state = useSliderState(props);
let { groupProps, trackProps, thumbProps } = useSlider(props, state, trackRef);
let { thumbProps: thumbProps0, inputProps: inputProps0 } = useSliderThumb({ index: 0 }, state);
let { thumbProps: thumbProps1, inputProps: inputProps1 } = useSliderThumb({ index: 1 }, state);
return (
<div {...groupProps}>
<div {...trackProps} ref={trackRef} style={{ position: 'relative', height: '4px', background: 'gray' }}>
<div {...thumbProps0} style={{ position: 'absolute', top: '-6px', left: `${state.getThumbPercent(0) * 100}%`, width: '20px', height: '20px', background: 'blue' }}>
<VisuallyHidden>
<input {...inputProps0} />
</VisuallyHidden>
</div>
<div {...thumbProps1} style={{ position: 'absolute', top: '-6px', left: `${state.getThumbPercent(1) * 100}%`, width: '20px', height: '20px', background: 'blue' }}>
<VisuallyHidden>
<input {...inputProps1} />
</VisuallyHidden>
</div>
</div>
</div>
);
}
rc-slider is a React component for creating sliders. It offers a range of features including single and range sliders, custom marks, and tooltips. Compared to @react-aria/slider, rc-slider provides more customization options but may require additional work to ensure full accessibility.
react-slider is a small, accessible slider component for React. It supports both single and range sliders and is designed with accessibility in mind. While it offers similar accessibility features as @react-aria/slider, it may not be as feature-rich in terms of customization and styling options.
react-input-range is a React component for creating input sliders. It supports single and range sliders and provides a simple API for customization. However, it may not be as focused on accessibility as @react-aria/slider, making it less suitable for applications that require strict accessibility compliance.
This package is part of react-spectrum. See the repo for more details.
FAQs
Slider
The npm package @react-aria/slider receives a total of 409,167 weekly downloads. As such, @react-aria/slider popularity was classified as popular.
We found that @react-aria/slider 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.