UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

186 lines (171 loc) 4.38 kB
import _extends from "@babel/runtime/helpers/builtin/extends"; import _objectWithoutProperties from "@babel/runtime/helpers/builtin/objectWithoutProperties"; import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import withStyles from '../styles/withStyles'; import Typography from '../Typography'; import StepIcon from '../StepIcon'; export const styles = theme => ({ root: { display: 'flex', alignItems: 'center', '&$alternativeLabel': { flexDirection: 'column' }, '&$disabled': { cursor: 'default' } }, horizontal: {}, vertical: {}, active: {}, completed: {}, alternativeLabel: {}, error: {}, disabled: {}, label: { color: theme.palette.text.secondary, '&$active': { color: theme.palette.text.primary, fontWeight: 500 }, '&$completed': { color: theme.palette.text.primary, fontWeight: 500 }, '&$alternativeLabel': { textAlign: 'center', marginTop: theme.spacing.unit * 2 }, '&$error': { color: theme.palette.error.main } }, iconContainer: { paddingRight: theme.spacing.unit, '&$alternativeLabel': { paddingRight: 0 } }, labelContainer: { width: '100%' } }); function StepLabel(props) { const { active, alternativeLabel, children, classes, className: classNameProp, completed, disabled, error, icon, last, optional, orientation, StepIconProps } = props, other = _objectWithoutProperties(props, ["active", "alternativeLabel", "children", "classes", "className", "completed", "disabled", "error", "icon", "last", "optional", "orientation", "StepIconProps"]); return React.createElement("span", _extends({ className: classNames(classes.root, classes[orientation], { [classes.disabled]: disabled, [classes.alternativeLabel]: alternativeLabel, [classes.error]: error }, classNameProp) }, other), icon && React.createElement("span", { className: classNames(classes.iconContainer, { [classes.alternativeLabel]: alternativeLabel }) }, React.createElement(StepIcon, _extends({ completed: completed, active: active, error: error, icon: icon }, StepIconProps))), React.createElement("span", { className: classes.labelContainer }, React.createElement(Typography, { variant: "body1", component: "span", className: classNames(classes.label, { [classes.alternativeLabel]: alternativeLabel, [classes.completed]: completed, [classes.active]: active, [classes.error]: error }) }, children), optional)); } StepLabel.propTypes = process.env.NODE_ENV !== "production" ? { /** * @ignore * Sets the step as active. Is passed to child components. */ active: PropTypes.bool, /** * @ignore * Set internally by Stepper when it's supplied with the alternativeLabel property. */ alternativeLabel: PropTypes.bool, /** * In most cases will simply be a string containing a title for the label. */ children: PropTypes.node, /** * Override or extend the styles applied to the component. * See [CSS API](#css-api) below for more details. */ classes: PropTypes.object.isRequired, /** * @ignore */ className: PropTypes.string, /** * @ignore * Mark the step as completed. Is passed to child components. */ completed: PropTypes.bool, /** * Mark the step as disabled, will also disable the button if * `StepLabelButton` is a child of `StepLabel`. Is passed to child components. */ disabled: PropTypes.bool, /** * Mark the step as failed. */ error: PropTypes.bool, /** * Override the default icon. */ icon: PropTypes.node, /** * @ignore */ last: PropTypes.bool, /** * The optional node to display. */ optional: PropTypes.node, /** * @ignore */ orientation: PropTypes.oneOf(['horizontal', 'vertical']), /** * Properties applied to the `StepIcon` element. */ StepIconProps: PropTypes.object } : {}; StepLabel.defaultProps = { active: false, alternativeLabel: false, completed: false, disabled: false, error: false, last: false, orientation: 'horizontal' }; StepLabel.muiName = 'StepLabel'; export default withStyles(styles, { name: 'MuiStepLabel' })(StepLabel);