UNPKG

@dotconnor/grommet

Version:

focus on the essential experience

142 lines (121 loc) 7.1 kB
"use strict"; exports.__esModule = true; exports.StyledCheckBox = exports.StyledCheckBoxKnob = exports.StyledCheckBoxToggle = exports.StyledCheckBoxBox = exports.StyledCheckBoxInput = exports.StyledCheckBoxContainer = exports.StyledCheckBoxIcon = void 0; var _styledComponents = _interopRequireWildcard(require("styled-components")); var _utils = require("../../utils"); var _defaultProps = require("../../default-props"); function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; } function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; } var disabledStyle = "\n opacity: 0.5;\n cursor: default;\n"; var hoverStyle = (0, _styledComponents.css)([":hover input:not([disabled]) + div,:hover input:not([disabled]) + span{border-color:", ";}"], function (props) { return (0, _utils.normalizeColor)(props.theme.checkBox.hover.border.color, props.theme); }); var StyledCheckBoxIcon = _styledComponents["default"].svg.withConfig({ displayName: "StyledCheckBox__StyledCheckBoxIcon", componentId: "sc-1dbk5ju-0" })(["box-sizing:border-box;stroke-width:", ";stroke:", ";width:", ";height:", ";", ";"], function (props) { return props.theme.checkBox.check.thickness; }, function (props) { return (0, _utils.normalizeColor)(props.theme.checkBox.color || 'control', props.theme); }, function (props) { return props.theme.checkBox.icon.size || props.theme.checkBox.size; }, function (props) { return props.theme.checkBox.icon.size || props.theme.checkBox.size; }, function (props) { return props.theme.checkBox.icon.extend; }); exports.StyledCheckBoxIcon = StyledCheckBoxIcon; StyledCheckBoxIcon.defaultProps = {}; Object.setPrototypeOf(StyledCheckBoxIcon.defaultProps, _defaultProps.defaultProps); var StyledCheckBoxContainer = _styledComponents["default"].label.withConfig({ displayName: "StyledCheckBox__StyledCheckBoxContainer", componentId: "sc-1dbk5ju-1" })(["display:flex;flex-direction:row;align-items:center;user-select:none;width:fit-content;", " ", " ", " ", ""], function (props) { return props.disabled && disabledStyle; }, function (props) { return !props.disabled && 'cursor: pointer;'; }, function (props) { return props.theme.checkBox.hover.border.color && hoverStyle; }, function (props) { return props.theme.checkBox.extend; }); exports.StyledCheckBoxContainer = StyledCheckBoxContainer; StyledCheckBoxContainer.defaultProps = {}; Object.setPrototypeOf(StyledCheckBoxContainer.defaultProps, _defaultProps.defaultProps); var StyledCheckBoxInput = _styledComponents["default"].input.withConfig({ displayName: "StyledCheckBox__StyledCheckBoxInput", componentId: "sc-1dbk5ju-2" })(["opacity:0;-moz-appearance:none;width:0;height:0;margin:0;", ":checked + span > span{left:calc( ", " - ", " );background:", ";}"], function (props) { return !props.disabled && 'cursor: pointer;'; }, function (props) { return props.theme.checkBox.toggle.size; }, function (props) { return props.theme.checkBox.size; }, function (props) { return (0, _utils.normalizeColor)(props.theme.checkBox.color || 'control', props.theme); }); exports.StyledCheckBoxInput = StyledCheckBoxInput; StyledCheckBoxInput.defaultProps = {}; Object.setPrototypeOf(StyledCheckBoxInput.defaultProps, _defaultProps.defaultProps); var StyledCheckBoxBox = _styledComponents["default"].div.withConfig({ displayName: "StyledCheckBox__StyledCheckBoxBox", componentId: "sc-1dbk5ju-3" })(["", ";", ";"], function (props) { return props.focus && (0, _utils.focusStyle)(); }, function (props) { return props.theme.checkBox.check.extend; }); exports.StyledCheckBoxBox = StyledCheckBoxBox; StyledCheckBoxBox.defaultProps = {}; Object.setPrototypeOf(StyledCheckBoxBox.defaultProps, _defaultProps.defaultProps); var StyledCheckBoxToggle = _styledComponents["default"].span.withConfig({ displayName: "StyledCheckBox__StyledCheckBoxToggle", componentId: "sc-1dbk5ju-4" })(["box-sizing:border-box;vertical-align:middle;display:inline-block;width:", ";height:", ";border:", " solid;border-color:", ";border-radius:", ";background-color:", ";", ";", ";"], function (props) { return props.theme.checkBox.toggle.size; }, function (props) { return props.theme.checkBox.size; }, function (props) { return props.theme.checkBox.border.width; }, function (props) { return (0, _utils.normalizeColor)(props.theme.checkBox.border.color, props.theme); }, function (props) { return props.theme.checkBox.toggle.radius; }, function (props) { return props.theme.checkBox.toggle.background ? (0, _utils.normalizeColor)(props.theme.checkBox.toggle.background, props.theme) : 'transparent'; }, function (props) { return props.focus && (0, _utils.focusStyle)(); }, function (props) { return props.theme.checkBox.toggle.extend; }); exports.StyledCheckBoxToggle = StyledCheckBoxToggle; StyledCheckBoxToggle.defaultProps = {}; Object.setPrototypeOf(StyledCheckBoxToggle.defaultProps, _defaultProps.defaultProps); var StyledCheckBoxKnob = _styledComponents["default"].span.withConfig({ displayName: "StyledCheckBox__StyledCheckBoxKnob", componentId: "sc-1dbk5ju-5" })(["box-sizing:border-box;position:relative;display:inherit;top:-", ";left:-", ";transition:all 0.3s;width:", ";height:", ";background:", ";border-radius:", ";", ";"], function (props) { return props.theme.checkBox.border.width; }, function (props) { return props.theme.checkBox.border.width; }, function (props) { return props.theme.checkBox.size; }, function (props) { return props.theme.checkBox.size; }, function (props) { return (0, _utils.normalizeColor)(props.theme.checkBox.toggle.color[props.theme.dark ? 'dark' : 'light'], props.theme); }, function (props) { return props.theme.checkBox.toggle.radius; }, function (props) { return props.theme.checkBox.toggle.knob.extend; }); exports.StyledCheckBoxKnob = StyledCheckBoxKnob; StyledCheckBoxKnob.defaultProps = {}; Object.setPrototypeOf(StyledCheckBoxKnob.defaultProps, _defaultProps.defaultProps); var StyledCheckBox = _styledComponents["default"].div.withConfig({ displayName: "StyledCheckBox", componentId: "sc-1dbk5ju-6" })(["flex-shrink:0;"]); exports.StyledCheckBox = StyledCheckBox; StyledCheckBox.defaultProps = {}; Object.setPrototypeOf(StyledCheckBox.defaultProps, _defaultProps.defaultProps);