
Product
Reachability for Ruby Now in Beta
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.
@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.
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.

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.

Research
/Security News
Malicious npm packages use Adspect cloaking and fake CAPTCHAs to fingerprint visitors and redirect victims to crypto-themed scam sites.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.