
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@solid-aria/meter
Advanced tools
Meters represent a quantity within a known range, or a fractional value.
createMeter - Provides the accessibility implementation for a meter component.npm install @solid-aria/meter
# or
yarn add @solid-aria/meter
# or
pnpm add @solid-aria/meter
createMeterThe <meter> HTML element can be used to build a meter, however it is very difficult to style cross browser. createMeter helps achieve accessible meters that can be styled as needed.
Meters are similar to progress bars, but represent a quantity as opposed to progress over time. See the createProgressBar primitive for more details about progress bars.
meter via ARIA, with fallback to progressbar where unsupportedimport { AriaMeterProps, createMeter } from "@solid-aria/meter";
import { Show } from "solid-js/web";
function Meter(props: AriaMeterProps) {
const { meterProps, labelProps, percentage } = createMeter(props);
// Calculate the width of the progress bar as a percentage
const barWidth = `${Math.round(percentage() * 100)}%`;
return (
<div {...meterProps} style={{ width: "200px" }}>
<div style={{ display: "flex", "justify-content": "space-between" }}>
<Show when={props.label}>
<span {...labelProps}>{props.label}</span>
<span>{meterProps["aria-valuetext"]}</span>
</Show>
</div>
<div style={{ height: "10px", background: "gray" }}>
<div style={{ width: barWidth, height: "10px", background: "green" }} />
</div>
</div>
);
}
function App() {
return <Meter label="Storage space" value={250} maxValue={1000} />;
}
createMeter will handle localized formatting of the value label for accessibility automatically. This is returned in the aria-valuetext prop in meterProps. You can use this to create a visible label if needed and ensure that it is formatted correctly. The number formatting can also be controlled using the formatOptions prop.
In right-to-left languages, the meter should be mirrored. Ensure that your CSS accounts for this.
All notable changes are described in the CHANGELOG.md file.
FAQs
Primitives for building accessible meter component.
The npm package @solid-aria/meter receives a total of 3 weekly downloads. As such, @solid-aria/meter popularity was classified as not popular.
We found that @solid-aria/meter demonstrated a not healthy version release cadence and project activity because the last version was released 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
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.