Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100885488
SliderValueLabelUnstyled.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Feb 3, 15:05
Size
747 B
Mime Type
text/x-java
Expires
Wed, Feb 5, 15:05 (2 d)
Engine
blob
Format
Raw Data
Handle
24049042
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
SliderValueLabelUnstyled.d.ts
View Options
import * as React from 'react';
export interface SliderValueLabelUnstyledProps {
children?: React.ReactElement;
className?: string;
style?: React.CSSProperties;
/**
* If `true`, the value label is visible.
*/
open: boolean;
/**
* The value of the slider.
* For ranged sliders, provide an array with two values.
*/
value: number;
/**
* Controls when the value label is displayed:
*
* - `auto` the value label will display when the thumb is hovered or focused.
* - `on` will display persistently.
* - `off` will never display.
* @default 'off'
*/
valueLabelDisplay?: 'on' | 'auto' | 'off';
}
export default function SliderValueLabelUnstyled(props: SliderValueLabelUnstyledProps): JSX.Element;
Event Timeline
Log In to Comment