An Angle Slider Component is a circular UI control for selecting or adjusting angular values, typically in degrees, by dragging a handle along a curve.
numberThe initial value of the slider.
Use when you don't need to control the value of the slider.
disabled
booleanWhether the slider is disabled.
id
stringThe unique identifier of the machine.
ids
{
root?: string;
item(value: string)?: string;
itemContent(value: string)?: string;
itemTrigger(value: string): string;
}The ids of the elements in the accordion. Useful for composition.
invalid
booleanWhether the slider is invalid.
keepMounted
booleanWhether to keep the component mounted after exit.
lazyMount
booleanWhether to enable lazy mounting.
name
stringThe name of the slider. Useful for form submission.
onValueChange
(details: ValueChangeDetails) => voidThe callback function for when the value changes.
onValueChangeEnd
(details: ValueChangeDetails) => voidThe callback function for when the value changes ends.