design-system-simplefi
Version:
Design System for SimpleFi Applications
49 lines • 2.8 kB
JavaScript
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
return cooked;
};
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
import React from 'react';
import PropTypes from 'prop-types';
import styled from 'styled-components';
import { transparentize } from 'polished';
import { getBorderRadius, getColor, getFontFamily, getFontSize, getLineHeight, } from '../../utils';
import { useOuterClick } from '../useOuterCallback';
export var StyledDropdownPane = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: absolute;\n background: ", ";\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n line-height: ", ";\n border: none;\n border-radius: ", ";\n\n ", ";\n"], ["\n position: absolute;\n background: ", ";\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n line-height: ", ";\n border: none;\n border-radius: ", ";\n\n ", ";\n"])), getColor('white'), getColor('black'), getFontFamily('base'), getFontSize('md'), getLineHeight('md'), getBorderRadius, function (_a) {
var $isElevated = _a.$isElevated;
return $isElevated &&
"\n box-shadow: 0 2px 6px 0 " + transparentize(0.85, '#000') + ";\n border-radius: 10px;\n ";
});
var DropdownPane = function (_a) {
var children = _a.children, onClickOut = _a.onClickOut, _b = _a.isElevated, isElevated = _b === void 0 ? false : _b, props = __rest(_a, ["children", "onClickOut", "isElevated"]);
var dropdownPaneRef = useOuterClick(onClickOut);
return (React.createElement(StyledDropdownPane, __assign({ ref: dropdownPaneRef, "$isElevated": isElevated }, props), children));
};
DropdownPane.propTypes = {
onClickOut: PropTypes.func.isRequired,
isElevated: PropTypes.bool,
};
export default DropdownPane;
var templateObject_1;
//# sourceMappingURL=DropdownPane.js.map