@catho/quantum
Version:
Catho react components
52 lines (51 loc) • 4.33 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"] = void 0;
var _propTypes = _interopRequireDefault(require("prop-types"));
var _styledComponents = _interopRequireDefault(require("styled-components"));
var _theme = require("../../shared/theme");
var _excluded = ["theme"];
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
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(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
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(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], t.indexOf(o) >= 0 || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.indexOf(n) >= 0) continue; t[n] = r[n]; } return t; }
var ActionButton = _styledComponents["default"].a.attrs(function (_ref) {
var theme = _ref.theme,
rest = _objectWithoutProperties(_ref, _excluded);
return _objectSpread({
theme: _objectSpread({
colors: _theme.colors,
spacing: _theme.spacing
}, theme)
}, rest);
}).withConfig({
displayName: "ActionButton",
componentId: "sc-2etngu-0"
})(["cursor:pointer;font-weight:normal;outline:none;text-align:center;text-decoration:none;transition:color 0.2s ease-in-out,background-color 0.2s ease-in-out,border 0.2s ease-in-out;user-select:none;white-space:nowrap;border-radius:4px;", ""], function (_ref2) {
var _ref2$theme = _ref2.theme,
_ref2$theme$colors$pr = _ref2$theme.colors.primary,
primary100 = _ref2$theme$colors$pr[100],
primary700 = _ref2$theme$colors$pr[700],
_ref2$theme$spacing = _ref2$theme.spacing,
xxxsmall = _ref2$theme$spacing.xxxsmall,
xxsmall = _ref2$theme$spacing.xxsmall,
xsmall = _ref2$theme$spacing.xsmall,
medium = _ref2$theme$spacing.medium;
return "\n border: ".concat(xxxsmall, "px solid transparent;\n margin: 0 ").concat(xxsmall, "px;\n padding: ").concat(xsmall, "px ").concat(medium, "px;\n color: ").concat(primary700, ";\n\n &[aria-disabled=true] {\n display: none;\n }\n\n &[aria-disabled=false] {\n &:hover,\n &:focus {\n background-color: ").concat(primary100, ";\n border: 2px solid ").concat(primary700, ";\n }\n }\n ");
});
ActionButton.propTypes = {
onClick: _propTypes["default"].func,
tabIndex: _propTypes["default"].number,
theme: _propTypes["default"].shape({
colors: _propTypes["default"].object,
spacing: _propTypes["default"].object
})
};
var _default = exports["default"] = ActionButton;