terra-heading
Version:
Terra includes styling for all standard headings `h1` through `h6`, as well as styles that match the size of their respective heading.
108 lines (105 loc) • 6.06 kB
JavaScript
;
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = exports.HeadingWeight = exports.HeadingSize = exports.HeadingLevel = void 0;
var _react = _interopRequireDefault(require("react"));
var _propTypes = _interopRequireDefault(require("prop-types"));
var _bind = _interopRequireDefault(require("classnames/bind"));
var _HeadingModule = _interopRequireDefault(require("./Heading.module.scss"));
var _excluded = ["level", "children", "isVisuallyHidden", "isItalic", "size", "weight", "colorClass"];
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } } return target; }
var cx = _bind.default.bind(_HeadingModule.default);
/* eslint-disable quote-props */
var HeadingLevel = exports.HeadingLevel = {
'1': 1,
'2': 2,
'3': 3,
'4': 4,
'5': 5,
'6': 6
};
var HeadingSize = exports.HeadingSize = {
MINI: 'mini',
TINY: 'tiny',
SMALL: 'small',
MEDIUM: 'medium',
LARGE: 'large',
HUGE: 'huge'
};
var HeadingWeight = exports.HeadingWeight = {
'200': 200,
'400': 400,
'700': 700
};
/* eslint-enable quote-props */
var propTypes = {
/**
* Child nodes
*/
children: _propTypes.default.node.isRequired,
/**
* Sets the heading level. One of `1`, `2`, `3`, `4`, `5`, `6`.
*/
level: _propTypes.default.oneOf([1, 2, 3, 4, 5, 6]).isRequired,
/**
* Sets the text to display in italics.
*/
isItalic: _propTypes.default.bool,
/**
* Sets the text to appear visually hidden. The text will still be available to screen readers.
*/
isVisuallyHidden: _propTypes.default.bool,
/**
* Sets the text size. One of `mini`, `tiny`, `small`, `medium`, `large`, `huge`.
*/
size: _propTypes.default.oneOf(['mini', 'tiny', 'small', 'medium', 'large', 'huge']),
/**
* Sets the text size. One of `200`, `400`, `700`.
*/
weight: _propTypes.default.oneOf([200, 400, 700]),
/**
* Sets an author defined class, to control the colors of the heading.
*
* 
* Adding `var(--my-app...` CSS variables is required for proper re-themeability when creating custom color styles _(see included examples)_.
*/
colorClass: _propTypes.default.string
};
var defaultProps = {
isItalic: false,
isVisuallyHidden: false,
weight: 700
};
var Heading = function Heading(_ref) {
var level = _ref.level,
children = _ref.children,
isVisuallyHidden = _ref.isVisuallyHidden,
isItalic = _ref.isItalic,
size = _ref.size,
weight = _ref.weight,
colorClass = _ref.colorClass,
customProps = _objectWithoutProperties(_ref, _excluded);
var attributes = _objectSpread({}, customProps);
var TextClassNames = cx(['heading', {
italic: isItalic
}, {
'visually-hidden': isVisuallyHidden
}, _defineProperty({}, "level-".concat(level), level), _defineProperty({}, "size-".concat(size), size), _defineProperty({}, "weight-".concat(weight), weight), colorClass, attributes.className]);
var Element = "h".concat(level);
return /*#__PURE__*/_react.default.createElement(Element, _extends({}, attributes, {
className: TextClassNames
}), children);
};
Heading.propTypes = propTypes;
Heading.defaultProps = defaultProps;
var _default = exports.default = Heading;