npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@xsolla/xui-switch

v0.187.3

Published

A cross-platform toggle for binary on/off settings; a visual alternative to a checkbox. <!-- BEGIN:xui-mcp-instructions:switch --> Use a switch when a user can choose only one of the options: on or off. Use when items in a list can be independently contro

Readme

Switch

A cross-platform toggle for binary on/off settings; a visual alternative to a checkbox.

Use a switch when a user can choose only one of the options: on or off. Use when items in a list can be independently controlled.

When to use

  • To toggle a single setting, feature, or preference on or off
  • When each item in a list can be independently enabled or disabled
  • When the change takes effect immediately, without requiring a "Save" or "Submit" action

When not to use

  • When the user must choose between more than two states — use a Select or Radio group
  • When the change requires confirmation before taking effect — use a Checkbox with a submit action instead
  • When the options are not binary (on/off) — use a ToggleButtonGroup

Content guidelines

Label should describe the feature or setting being toggled, written as a noun or noun phrase: "Email notifications", "Auto-renew", "Dark mode".

Avoid labelling the switch with the action: not "Enable notifications" — just "Notifications".

Description should explain the impact of the toggle in plain language. Keep it to one sentence.

Error message should be specific and constructive: "This setting cannot be changed while another process is running" — not just "Error".

Behaviour guidelines

The switch should take effect immediately on toggle, without requiring a confirmation step. If the action has significant consequences, show a confirmation dialog before applying.

In a list of switches, each one is independent — toggling one should never affect the others unless there is an explicit dependency (e.g. a parent/child relationship between settings).

Disabled switches should preserve their current value visibly so the user understands the current state even if they cannot change it. Provide a tooltip explaining why the switch is disabled.

Avoid using a switch to replace a Checkbox in a form that is submitted later — switches imply immediate effect.

Accessibility

The switch should render as role="switch" with aria-checked="true" or aria-checked="false" to communicate its state to screen readers.

The Description text should be linked via aria-describedby so screen readers announce it alongside the label.

The Error message must be linked via aria-describedby so it is announced on focus in the Error state.

Disabled switches should remain focusable (aria-disabled="true" rather than the HTML disabled attribute) to allow tooltip display and screen reader announcement.

Ensure the focus ring is visible for keyboard users — the component does not define a focus state visually; this must be implemented in code.

The minimum touch target for interactive elements is 44×44px. Sizes S (16px tall) and M (18px tall) require additional padding in touch contexts to meet this threshold.

Installation

npm install @xsolla/xui-switch

Imports

import { Switch } from "@xsolla/xui-switch";
import type { SwitchProps } from "@xsolla/xui-switch";

Quick start

const [enabled, setEnabled] = useState(false);

<Switch
  checked={enabled}
  onValueChange={setEnabled}
  label="Enable notifications"
/>;

API Reference

<Switch>

| Prop | Type | Default | Description | | ---------------- | ---------------------------------------------- | ----------- | ------------------------------------------------------------------------------------------------------------- | | testID | string | — | Test ID for testing frameworks. On web this renders as data-testid; on React Native it renders as testID. | | checked | boolean | false | Whether the switch is on. | | size | 'sm' \| 'md' \| 'lg' \| 'xl' | 'md' | Size of the switch. | | state | 'default' \| 'hover' \| 'disable' \| 'error' | 'default' | Visual state. | | disabled | boolean | false | Disable the switch. | | label | string | — | Label text shown next to the switch. | | labelPosition | 'left' \| 'right' | 'right' | Position of the label. | | description | string | — | Description text below the label. | | errorLabel | string | — | Error message shown when state === 'error'. | | onValueChange | (value: boolean) => void | — | Fired when toggled. | | ariaLabel | string | — | Accessible label for screen readers. | | ariaLabelledBy | string | — | ID of an element that labels the switch. |

Inherits ThemeOverrideProps (themeMode, themeProductContext).

Examples

With description

const [darkMode, setDarkMode] = useState(false);

<Switch
  checked={darkMode}
  onValueChange={setDarkMode}
  label="Dark mode"
  description="Enable dark theme across the application"
/>;

Label positions

<Switch label="Label on the right" labelPosition="right" />
<Switch label="Label on the left" labelPosition="left" />

Sizes

<Switch size="sm" label="Small" checked />
<Switch size="md" label="Medium" checked />
<Switch size="lg" label="Large" checked />
<Switch size="xl" label="Extra large" checked />

Error state

<Switch
  checked={false}
  state="error"
  label="Required setting"
  errorLabel="This setting must be enabled to continue"
/>

Disabled

<Switch state="disable" label="Disabled off" />
<Switch state="disable" checked label="Disabled on" />

Accessibility

  • Uses role="switch" and aria-checked to reflect state.
  • Space and Enter toggle the switch.
  • description and errorLabel are linked via aria-describedby.
  • Disabled state is announced to assistive technology.