{"ast":null,"code":"import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectWithoutProperties from \"@babel/runtime/helpers/esm/objectWithoutProperties\";\nimport * as React from 'react';\nimport PropTypes from 'prop-types';\nimport clsx from 'clsx';\nimport withStyles from '../styles/withStyles';\nimport Typography from '../Typography';\nimport StepIcon from '../StepIcon';\nexport var styles = function styles(theme) {\n  return {\n    /* Styles applied to the root element. */\n    root: {\n      display: 'flex',\n      alignItems: 'center',\n      '&$alternativeLabel': {\n        flexDirection: 'column'\n      },\n      '&$disabled': {\n        cursor: 'default'\n      }\n    },\n\n    /* Styles applied to the root element if `orientation=\"horizontal\"`. */\n    horizontal: {},\n\n    /* Styles applied to the root element if `orientation=\"vertical\"`. */\n    vertical: {},\n\n    /* Styles applied to the `Typography` component which wraps `children`. */\n    label: {\n      color: theme.palette.text.secondary,\n      '&$active': {\n        color: theme.palette.text.primary,\n        fontWeight: 500\n      },\n      '&$completed': {\n        color: theme.palette.text.primary,\n        fontWeight: 500\n      },\n      '&$alternativeLabel': {\n        textAlign: 'center',\n        marginTop: 16\n      },\n      '&$error': {\n        color: theme.palette.error.main\n      }\n    },\n\n    /* Pseudo-class applied to the `Typography` component if `active={true}`. */\n    active: {},\n\n    /* Pseudo-class applied to the `Typography` component if `completed={true}`. */\n    completed: {},\n\n    /* Pseudo-class applied to the root element and `Typography` component if `error={true}`. */\n    error: {},\n\n    /* Pseudo-class applied to the root element and `Typography` component if `disabled={true}`. */\n    disabled: {},\n\n    /* Styles applied to the `icon` container element. */\n    iconContainer: {\n      flexShrink: 0,\n      // Fix IE 11 issue\n      display: 'flex',\n      paddingRight: 8,\n      '&$alternativeLabel': {\n        paddingRight: 0\n      }\n    },\n\n    /* Pseudo-class applied to the root and icon container and `Typography` if `alternativeLabel={true}`. */\n    alternativeLabel: {},\n\n    /* Styles applied to the container element which wraps `Typography` and `optional`. */\n    labelContainer: {\n      width: '100%'\n    }\n  };\n};\nvar StepLabel = /*#__PURE__*/React.forwardRef(function StepLabel(props, ref) {\n  var _props$active = props.active,\n      active = _props$active === void 0 ? false : _props$active,\n      _props$alternativeLab = props.alternativeLabel,\n      alternativeLabel = _props$alternativeLab === void 0 ? false : _props$alternativeLab,\n      children = props.children,\n      classes = props.classes,\n      className = props.className,\n      _props$completed = props.completed,\n      completed = _props$completed === void 0 ? false : _props$completed,\n      _props$disabled = props.disabled,\n      disabled = _props$disabled === void 0 ? false : _props$disabled,\n      _props$error = props.error,\n      error = _props$error === void 0 ? false : _props$error,\n      expanded = props.expanded,\n      icon = props.icon,\n      last = props.last,\n      optional = props.optional,\n      _props$orientation = props.orientation,\n      orientation = _props$orientation === void 0 ? 'horizontal' : _props$orientation,\n      StepIconComponentProp = props.StepIconComponent,\n      StepIconProps = props.StepIconProps,\n      other = _objectWithoutProperties(props, [\"active\", \"alternativeLabel\", \"children\", \"classes\", \"className\", \"completed\", \"disabled\", \"error\", \"expanded\", \"icon\", \"last\", \"optional\", \"orientation\", \"StepIconComponent\", \"StepIconProps\"]);\n\n  var StepIconComponent = StepIconComponentProp;\n\n  if (icon && !StepIconComponent) {\n    StepIconComponent = StepIcon;\n  }\n\n  return /*#__PURE__*/React.createElement(\"span\", _extends({\n    className: clsx(classes.root, classes[orientation], className, disabled && classes.disabled, alternativeLabel && classes.alternativeLabel, error && classes.error),\n    ref: ref\n  }, other), icon || StepIconComponent ? /*#__PURE__*/React.createElement(\"span\", {\n    className: clsx(classes.iconContainer, alternativeLabel && classes.alternativeLabel)\n  }, /*#__PURE__*/React.createElement(StepIconComponent, _extends({\n    completed: completed,\n    active: active,\n    error: error,\n    icon: icon\n  }, StepIconProps))) : null, /*#__PURE__*/React.createElement(\"span\", {\n    className: classes.labelContainer\n  }, children ? /*#__PURE__*/React.createElement(Typography, {\n    variant: \"body2\",\n    component: \"span\",\n    display: \"block\",\n    className: clsx(classes.label, alternativeLabel && classes.alternativeLabel, completed && classes.completed, active && classes.active, error && classes.error)\n  }, children) : null, optional));\n});\nprocess.env.NODE_ENV !== \"production\" ? StepLabel.propTypes = {\n  // ----------------------------- Warning --------------------------------\n  // | These PropTypes are generated from the TypeScript type definitions |\n  // |     To update them edit the d.ts file and run \"yarn proptypes\"     |\n  // ----------------------------------------------------------------------\n\n  /**\n   * In most cases will simply be a string containing a title for the label.\n   */\n  children: PropTypes.node,\n\n  /**\n   * Override or extend the styles applied to the component.\n   * See [CSS API](#css) below for more details.\n   */\n  classes: PropTypes.object,\n\n  /**\n   * @ignore\n   */\n  className: PropTypes.string,\n\n  /**\n   * Mark the step as disabled, will also disable the button if\n   * `StepLabelButton` is a child of `StepLabel`. Is passed to child components.\n   */\n  disabled: PropTypes.bool,\n\n  /**\n   * Mark the step as failed.\n   */\n  error: PropTypes.bool,\n\n  /**\n   * Override the default label of the step icon.\n   */\n  icon: PropTypes.node,\n\n  /**\n   * The optional node to display.\n   */\n  optional: PropTypes.node,\n\n  /**\n   * The component to render in place of the [`StepIcon`](/api/step-icon/).\n   */\n  StepIconComponent: PropTypes.elementType,\n\n  /**\n   * Props applied to the [`StepIcon`](/api/step-icon/) element.\n   */\n  StepIconProps: PropTypes.object\n} : void 0;\nStepLabel.muiName = 'StepLabel';\nexport default withStyles(styles, {\n  name: 'MuiStepLabel'\n})(StepLabel);","map":{"version":3,"sources":["C:/laragon/www/itokin/DriverOPCDA/frontend/node_modules/@material-ui/core/esm/StepLabel/StepLabel.js"],"names":["_extends","_objectWithoutProperties","React","PropTypes","clsx","withStyles","Typography","StepIcon","styles","theme","root","display","alignItems","flexDirection","cursor","horizontal","vertical","label","color","palette","text","secondary","primary","fontWeight","textAlign","marginTop","error","main","active","completed","disabled","iconContainer","flexShrink","paddingRight","alternativeLabel","labelContainer","width","StepLabel","forwardRef","props","ref","_props$active","_props$alternativeLab","children","classes","className","_props$completed","_props$disabled","_props$error","expanded","icon","last","optional","_props$orientation","orientation","StepIconComponentProp","StepIconComponent","StepIconProps","other","createElement","variant","component","process","env","NODE_ENV","propTypes","node","object","string","bool","elementType","muiName","name"],"mappings":"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","sourcesContent":["import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectWithoutProperties from \"@babel/runtime/helpers/esm/objectWithoutProperties\";\nimport * as React from 'react';\nimport PropTypes from 'prop-types';\nimport clsx from 'clsx';\nimport withStyles from '../styles/withStyles';\nimport Typography from '../Typography';\nimport StepIcon from '../StepIcon';\nexport var styles = function styles(theme) {\n  return {\n    /* Styles applied to the root element. */\n    root: {\n      display: 'flex',\n      alignItems: 'center',\n      '&$alternativeLabel': {\n        flexDirection: 'column'\n      },\n      '&$disabled': {\n        cursor: 'default'\n      }\n    },\n\n    /* Styles applied to the root element if `orientation=\"horizontal\"`. */\n    horizontal: {},\n\n    /* Styles applied to the root element if `orientation=\"vertical\"`. */\n    vertical: {},\n\n    /* Styles applied to the `Typography` component which wraps `children`. */\n    label: {\n      color: theme.palette.text.secondary,\n      '&$active': {\n        color: theme.palette.text.primary,\n        fontWeight: 500\n      },\n      '&$completed': {\n        color: theme.palette.text.primary,\n        fontWeight: 500\n      },\n      '&$alternativeLabel': {\n        textAlign: 'center',\n        marginTop: 16\n      },\n      '&$error': {\n        color: theme.palette.error.main\n      }\n    },\n\n    /* Pseudo-class applied to the `Typography` component if `active={true}`. */\n    active: {},\n\n    /* Pseudo-class applied to the `Typography` component if `completed={true}`. */\n    completed: {},\n\n    /* Pseudo-class applied to the root element and `Typography` component if `error={true}`. */\n    error: {},\n\n    /* Pseudo-class applied to the root element and `Typography` component if `disabled={true}`. */\n    disabled: {},\n\n    /* Styles applied to the `icon` container element. */\n    iconContainer: {\n      flexShrink: 0,\n      // Fix IE 11 issue\n      display: 'flex',\n      paddingRight: 8,\n      '&$alternativeLabel': {\n        paddingRight: 0\n      }\n    },\n\n    /* Pseudo-class applied to the root and icon container and `Typography` if `alternativeLabel={true}`. */\n    alternativeLabel: {},\n\n    /* Styles applied to the container element which wraps `Typography` and `optional`. */\n    labelContainer: {\n      width: '100%'\n    }\n  };\n};\nvar StepLabel = /*#__PURE__*/React.forwardRef(function StepLabel(props, ref) {\n  var _props$active = props.active,\n      active = _props$active === void 0 ? false : _props$active,\n      _props$alternativeLab = props.alternativeLabel,\n      alternativeLabel = _props$alternativeLab === void 0 ? false : _props$alternativeLab,\n      children = props.children,\n      classes = props.classes,\n      className = props.className,\n      _props$completed = props.completed,\n      completed = _props$completed === void 0 ? false : _props$completed,\n      _props$disabled = props.disabled,\n      disabled = _props$disabled === void 0 ? false : _props$disabled,\n      _props$error = props.error,\n      error = _props$error === void 0 ? false : _props$error,\n      expanded = props.expanded,\n      icon = props.icon,\n      last = props.last,\n      optional = props.optional,\n      _props$orientation = props.orientation,\n      orientation = _props$orientation === void 0 ? 'horizontal' : _props$orientation,\n      StepIconComponentProp = props.StepIconComponent,\n      StepIconProps = props.StepIconProps,\n      other = _objectWithoutProperties(props, [\"active\", \"alternativeLabel\", \"children\", \"classes\", \"className\", \"completed\", \"disabled\", \"error\", \"expanded\", \"icon\", \"last\", \"optional\", \"orientation\", \"StepIconComponent\", \"StepIconProps\"]);\n\n  var StepIconComponent = StepIconComponentProp;\n\n  if (icon && !StepIconComponent) {\n    StepIconComponent = StepIcon;\n  }\n\n  return /*#__PURE__*/React.createElement(\"span\", _extends({\n    className: clsx(classes.root, classes[orientation], className, disabled && classes.disabled, alternativeLabel && classes.alternativeLabel, error && classes.error),\n    ref: ref\n  }, other), icon || StepIconComponent ? /*#__PURE__*/React.createElement(\"span\", {\n    className: clsx(classes.iconContainer, alternativeLabel && classes.alternativeLabel)\n  }, /*#__PURE__*/React.createElement(StepIconComponent, _extends({\n    completed: completed,\n    active: active,\n    error: error,\n    icon: icon\n  }, StepIconProps))) : null, /*#__PURE__*/React.createElement(\"span\", {\n    className: classes.labelContainer\n  }, children ? /*#__PURE__*/React.createElement(Typography, {\n    variant: \"body2\",\n    component: \"span\",\n    display: \"block\",\n    className: clsx(classes.label, alternativeLabel && classes.alternativeLabel, completed && classes.completed, active && classes.active, error && classes.error)\n  }, children) : null, optional));\n});\nprocess.env.NODE_ENV !== \"production\" ? StepLabel.propTypes = {\n  // ----------------------------- Warning --------------------------------\n  // | These PropTypes are generated from the TypeScript type definitions |\n  // |     To update them edit the d.ts file and run \"yarn proptypes\"     |\n  // ----------------------------------------------------------------------\n\n  /**\n   * In most cases will simply be a string containing a title for the label.\n   */\n  children: PropTypes.node,\n\n  /**\n   * Override or extend the styles applied to the component.\n   * See [CSS API](#css) below for more details.\n   */\n  classes: PropTypes.object,\n\n  /**\n   * @ignore\n   */\n  className: PropTypes.string,\n\n  /**\n   * Mark the step as disabled, will also disable the button if\n   * `StepLabelButton` is a child of `StepLabel`. Is passed to child components.\n   */\n  disabled: PropTypes.bool,\n\n  /**\n   * Mark the step as failed.\n   */\n  error: PropTypes.bool,\n\n  /**\n   * Override the default label of the step icon.\n   */\n  icon: PropTypes.node,\n\n  /**\n   * The optional node to display.\n   */\n  optional: PropTypes.node,\n\n  /**\n   * The component to render in place of the [`StepIcon`](/api/step-icon/).\n   */\n  StepIconComponent: PropTypes.elementType,\n\n  /**\n   * Props applied to the [`StepIcon`](/api/step-icon/) element.\n   */\n  StepIconProps: PropTypes.object\n} : void 0;\nStepLabel.muiName = 'StepLabel';\nexport default withStyles(styles, {\n  name: 'MuiStepLabel'\n})(StepLabel);"]},"metadata":{},"sourceType":"module"}