Skip to main content

Starwind UI v1.3.1 is now available! Get started

Switch

Installation

Usage

variant

size

Event Handling

Whenever toggled, the switch emits a starwind-switch:change event. This can be listened to in order to update the UI based on the event.detail.checked value.

Switch Event Test

Switch is currently: off

The event emission happens on state change and looks like:

const event = new CustomEvent<SwitchChangeEvent["detail"]>("starwind-switch:change", {
detail: {
checked: newState, // boolean
switchId: this.switchButton.id,
},
bubbles: true,
cancelable: true,
});
this.switchButton.dispatchEvent(event);

API Reference

PropTypeDefault
idstringRequired
labelstring-
checkedbooleanfalse
paddingnumbersize-based*
size"sm" | "md" | "lg""md"
variant"default" | "primary" | "secondary" | "info" | "success" | "warning" | "error""default"

*Default padding is determined by size: sm = 2.5px, md = 3px, lg = 4px

This component also accepts all standard HTML attributes for <button> elements, except for role, type, and aria-checked.

Changelog

v1.1.0

  • tailwind-variants now implemented. This uses tailwind-merge under the hood to merge Tailwind classes without style conflicts, allowing you to override any existing classes using the “class” prop.