@elastic/eui
Version:
Elastic UI Component Library
58 lines (57 loc) • 2.67 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["className", "children", "headingElement", "step", "title", "titleSize", "status"];
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
import classNames from 'classnames';
import React, { createElement } from 'react';
import { EuiTitle } from '../title';
import { EuiStepNumber } from './step_number';
import { useEuiTheme } from '../../services';
import { euiStepStyles, euiStepContentStyles, euiStepTitleStyles } from './step.styles';
import { jsx as ___EmotionJSX } from "@emotion/react";
export var EuiStep = function EuiStep(_ref) {
var className = _ref.className,
children = _ref.children,
_ref$headingElement = _ref.headingElement,
headingElement = _ref$headingElement === void 0 ? 'p' : _ref$headingElement,
_ref$step = _ref.step,
step = _ref$step === void 0 ? 1 : _ref$step,
title = _ref.title,
_ref$titleSize = _ref.titleSize,
titleSize = _ref$titleSize === void 0 ? 's' : _ref$titleSize,
status = _ref.status,
rest = _objectWithoutProperties(_ref, _excluded);
var classes = classNames('euiStep', className);
var euiTheme = useEuiTheme();
var styles = euiStepStyles(euiTheme);
var cssStyles = [styles.euiStep, styles[titleSize]];
var contentStyles = euiStepContentStyles(euiTheme);
var cssContentStyles = [contentStyles.euiStep__content, contentStyles[titleSize]];
var titleStyles = euiStepTitleStyles(euiTheme);
var cssStepTitleStyles = [titleStyles.euiStep__title, status === 'disabled' && titleStyles.isDisabled, titleStyles[titleSize]];
var cssTitleWrapperStyles = titleStyles.euiStep__titleWrapper;
return ___EmotionJSX("div", _extends({
className: classes,
css: cssStyles
}, rest), ___EmotionJSX("div", {
className: "euiStep__titleWrapper",
css: cssTitleWrapperStyles
}, ___EmotionJSX(EuiStepNumber, {
number: step,
status: status,
titleSize: titleSize === 'xxs' ? 'none' : titleSize
}), ___EmotionJSX(EuiTitle, {
size: titleSize === 'xxs' ? 'xs' : titleSize,
className: "euiStep__title",
css: cssStepTitleStyles
}, /*#__PURE__*/createElement(headingElement, null, title))), ___EmotionJSX("div", {
className: "euiStep__content",
css: cssContentStyles
}, children));
};