UNPKG

@mui/material

Version:

React components that implement Google's Material Design.

101 lines (89 loc) 3.85 kB
import * as React from 'react'; import { ExtendSliderUnstyledTypeMap, ExtendSliderUnstyled, SliderUnstyledTypeMap, } from '@mui/base/SliderUnstyled'; import { SxProps } from '@mui/system'; import { OverridableStringUnion } from '@mui/types'; import { Theme } from '../styles'; import { OverrideProps } from '../OverridableComponent'; export interface SliderPropsColorOverrides {} export interface SliderPropsSizeOverrides {} export type SliderTypeMap< D extends React.ElementType = 'span', P = {}, > = ExtendSliderUnstyledTypeMap<{ props: P & { /** * The color of the component. * It supports both default and custom theme colors, which can be added as shown in the * [palette customization guide](https://mui.com/material-ui/customization/palette/#adding-new-colors). * @default 'primary' */ color?: OverridableStringUnion<'primary' | 'secondary', SliderPropsColorOverrides>; /** * Override or extend the styles applied to the component. */ classes?: SliderUnstyledTypeMap['props']['classes'] & { /** Class name applied to the root element if `color="primary"`. */ colorPrimary?: string; /** Class name applied to the root element if `color="secondary"`. */ colorSecondary?: string; /** Class name applied to the root element if `size="small"`. */ sizeSmall?: string; /** Class name applied to the thumb element if `color="primary"`. */ thumbColorPrimary?: string; /** Class name applied to the thumb element if `color="secondary"`. */ thumbColorSecondary?: string; /** Class name applied to the thumb element if `size="small"`. */ thumbSizeSmall?: string; }; /** * The size of the slider. * @default 'medium' */ size?: OverridableStringUnion<'small' | 'medium', SliderPropsSizeOverrides>; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps<Theme>; }; defaultComponent: D; }>; type SliderRootProps = NonNullable<SliderTypeMap['props']['componentsProps']>['root']; type SliderMarkProps = NonNullable<SliderTypeMap['props']['componentsProps']>['mark']; type SliderMarkLabelProps = NonNullable<SliderTypeMap['props']['componentsProps']>['markLabel']; type SliderRailProps = NonNullable<SliderTypeMap['props']['componentsProps']>['rail']; type SliderTrackProps = NonNullable<SliderTypeMap['props']['componentsProps']>['track']; type SliderThumbProps = NonNullable<SliderTypeMap['props']['componentsProps']>['thumb']; type SliderValueLabelProps = NonNullable<SliderTypeMap['props']['componentsProps']>['valueLabel']; type SliderInputProps = NonNullable<SliderTypeMap['props']['componentsProps']>['input']; export const SliderRoot: React.FC<SliderRootProps>; export const SliderMark: React.FC<SliderMarkProps>; export const SliderMarkLabel: React.FC<SliderMarkLabelProps>; export const SliderRail: React.FC<SliderRailProps>; export const SliderTrack: React.FC<SliderTrackProps>; export const SliderThumb: React.FC<SliderThumbProps>; export const SliderValueLabel: React.FC<SliderValueLabelProps>; export const SliderInput: React.FC<SliderInputProps>; /** * * Demos: * * - [Slider](https://mui.com/material-ui/react-slider/) * * API: * * - [Slider API](https://mui.com/material-ui/api/slider/) * - inherits [SliderUnstyled API](https://mui.com/base/api/slider-unstyled/) */ declare const Slider: ExtendSliderUnstyled<SliderTypeMap>; export type SliderClassKey = keyof NonNullable<SliderTypeMap['props']['classes']>; export type SliderProps< D extends React.ElementType = SliderTypeMap['defaultComponent'], P = {}, > = OverrideProps<SliderTypeMap<D, P>, D>; export type SliderClasses = Record<SliderClassKey, string>; export const sliderClasses: SliderClasses; export default Slider;