@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
68 lines (66 loc) • 2.35 kB
JavaScript
'use client';
import * as React from 'react';
import PropTypes from 'prop-types';
import { useComponentRenderer } from '../../utils/useComponentRenderer.js';
import { useSliderRootContext } from '../root/SliderRootContext.js';
import { sliderStyleHookMapping } from '../root/styleHooks.js';
/**
* Contains the slider indicator and represents the entire range of the slider.
* Renders a `<div>` element.
*
* Documentation: [Base UI Slider](https://base-ui.com/react/components/slider)
*/
const SliderTrack = /*#__PURE__*/React.forwardRef(function SliderTrack(props, forwardedRef) {
const {
render,
className,
...otherProps
} = props;
const {
state
} = useSliderRootContext();
const {
renderElement
} = useComponentRenderer({
render: render ?? 'div',
state,
className,
ref: forwardedRef,
extraProps: {
...otherProps,
style: {
position: 'relative',
...otherProps.style
}
},
customStyleHookMapping: sliderStyleHookMapping
});
return renderElement();
});
export { SliderTrack };
process.env.NODE_ENV !== "production" ? SliderTrack.propTypes /* remove-proptypes */ = {
// ┌────────────────────────────── Warning ──────────────────────────────┐
// │ These PropTypes are generated from the TypeScript type definitions. │
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
// └─────────────────────────────────────────────────────────────────────┘
/**
* @ignore
*/
children: PropTypes.node,
/**
* CSS class applied to the element, or a function that
* returns a class based on the component’s state.
*/
className: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
/**
* Allows you to replace the component’s HTML element
* with a different tag, or compose it with another component.
*
* Accepts a `ReactElement` or a function that returns the element to render.
*/
render: PropTypes.oneOfType([PropTypes.element, PropTypes.func]),
/**
* @ignore
*/
style: PropTypes.object
} : void 0;