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.159.0

Published

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

Downloads

8,946

Readme

Switch

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

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.