mittwald Flow Logo

Components

Switch

Die Switch-Komponente stellt einen Schalter dar, mit dem eine Option aktiviert oder deaktiviert werden kann.GitHub

Playground

import { Switch } from "@mittwald/flow-react-components";

<Switch defaultSelected>Autoresponder</Switch>

Mit Label vorne

import { Switch } from "@mittwald/flow-react-components";

<Switch labelPosition="leading">Autoresponder</Switch>

Disabled

import { Switch } from "@mittwald/flow-react-components";

<Switch isDisabled>Autoresponder</Switch>

Properties

PropertyTypeDefaultDescription
labelPosition"leading" | "trailing""trailing"

Whether the label should appear before or after the switch.

classNamestring | ((values: SwitchRenderProps & { defaultClassName: string; }) => string)-

The CSS className for the element. A function may be provided to compute the class based on component state.

styleCSSProperties | ((values: SwitchRenderProps & { defaultStyle: CSSProperties; }) => CSSProperties)-

The inline style for the element. A function may be provided to compute the style based on component state.

isDisabledboolean-

Whether the input is disabled.

isReadOnlyboolean-

Whether the input can be selected but not changed by the user.

autoFocusboolean-

Whether the element should receive focus on render.

valuestring-

The value of the input element, used when submitting an HTML form. See MDN.

idstring-

The element's unique identifier. See MDN.

namestring-

The name of the input element, used when submitting an HTML form. See MDN.

slotstring-

A slot name for the component. Slots allow the component to receive props from a parent component. An explicit null value indicates that the local props completely override all props received from a parent.

excludeFromTabOrderboolean-

Whether to exclude the element from the sequential tab order. If true, the element will not be focusable via the keyboard by tabbing. This should be avoided except in rare scenarios where an alternative means of accessing the element or its functionality via the keyboard is available.

defaultSelectedboolean-

Whether the Switch should be selected (uncontrolled).

isSelectedboolean-

Whether the Switch should be selected (controlled).

inputRefRefObject<HTMLInputElement>-

A ref for the HTML input element.

childrenReactNode-
wrapWithReactElement<unknown, string | JSXElementConstructor<any>>-
refRef<HTMLLabelElement>-

Allows getting a ref to the component instance. Once the component unmounts, React will set ref.current to null (or call the ref with null if you passed a callback ref). @see React Docs

keyKey-

Feedback geben