UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

254 lines (247 loc) • 10.4 kB
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty"; import _extends from "@babel/runtime/helpers/esm/extends"; import { genActiveStyle, genBasicInputStyle, genDisabledStyle, genHoverStyle, genInputGroupStyle, genPlaceholderStyle, genStatusStyle, initInputToken } from '../../input/style'; import { genComponentStyleHook } from '../../theme'; import { resetComponent, resetIcon } from '../../style'; var genInputNumberStyles = function genInputNumberStyles(token) { var _wrapper, _componentCls; var componentCls = token.componentCls, controlLineWidth = token.controlLineWidth, controlLineType = token.controlLineType, colorBorder = token.colorBorder, controlRadius = token.controlRadius, fontSizeLG = token.fontSizeLG, controlHeightLG = token.controlHeightLG, controlHeightSM = token.controlHeightSM, colorError = token.colorError, inputPaddingHorizontalSM = token.inputPaddingHorizontalSM, colorTextDescription = token.colorTextDescription, motionDurationFast = token.motionDurationFast, colorPrimary = token.colorPrimary, controlHeight = token.controlHeight, inputPaddingHorizontal = token.inputPaddingHorizontal, colorBgContainer = token.colorBgContainer, motionDurationMid = token.motionDurationMid, colorTextDisabled = token.colorTextDisabled, controlRadiusSM = token.controlRadiusSM, controlRadiusLG = token.controlRadiusLG, controlWidth = token.controlWidth, handleVisible = token.handleVisible; return [_defineProperty({}, componentCls, _extends(_extends(_extends(_extends({}, resetComponent(token)), genBasicInputStyle(token)), genStatusStyle(token)), _defineProperty({ display: 'inline-block', width: controlWidth, margin: 0, padding: 0, border: "".concat(controlLineWidth, "px ").concat(controlLineType, " ").concat(colorBorder), borderRadius: controlRadius, '&-rtl': _defineProperty({ direction: 'rtl' }, "".concat(componentCls, "-input"), { direction: 'rtl' }), '&-lg': _defineProperty({ padding: 0, fontSize: fontSizeLG, borderRadius: controlRadiusLG }, "input".concat(componentCls, "-input"), { height: controlHeightLG - 2 * controlLineWidth }), '&-sm': _defineProperty({ padding: 0, borderRadius: controlRadiusSM }, "input".concat(componentCls, "-input"), { height: controlHeightSM - 2 * controlLineWidth, padding: "0 ".concat(inputPaddingHorizontalSM, "px") }), '&:hover': _extends({}, genHoverStyle(token)), '&-focused': _extends({}, genActiveStyle(token)), '&-disabled': _extends(_extends({}, genDisabledStyle(token)), _defineProperty({}, "".concat(componentCls, "-input"), { cursor: 'not-allowed' })), // ===================== Out Of Range ===================== '&-out-of-range': { input: { color: colorError } }, // Style for input-group: input with label, with button or dropdown... '&-group': _extends(_extends(_extends({}, resetComponent(token)), genInputGroupStyle(token)), { '&-wrapper': (_wrapper = { display: 'inline-block', textAlign: 'start', verticalAlign: 'top' }, _defineProperty(_wrapper, "".concat(componentCls, "-affix-wrapper"), { width: '100%' }), _defineProperty(_wrapper, '&-lg', _defineProperty({}, "".concat(componentCls, "-group-addon"), { borderRadius: controlRadiusLG })), _defineProperty(_wrapper, '&-sm', _defineProperty({}, "".concat(componentCls, "-group-addon"), { borderRadius: controlRadiusSM })), _wrapper) }) }, componentCls, { '&-input': _extends(_extends({ width: '100%', height: controlHeight - 2 * controlLineWidth, padding: "0 ".concat(inputPaddingHorizontal, "px"), textAlign: 'start', backgroundColor: 'transparent', border: 0, borderRadius: controlRadius, outline: 0, transition: "all ".concat(motionDurationFast, " linear"), appearance: 'textfield' }, genPlaceholderStyle(token.colorTextPlaceholder)), { '&[type="number"]::-webkit-inner-spin-button, &[type="number"]::-webkit-outer-spin-button': { margin: 0, /* stylelint-disable-next-line property-no-vendor-prefix */ webkitAppearance: 'none', appearance: 'none' } }) }))), // Handler _defineProperty({}, componentCls, (_componentCls = {}, _defineProperty(_componentCls, "&:hover ".concat(componentCls, "-handler-wrap, &-focused ").concat(componentCls, "-handler-wrap"), { opacity: 1 }), _defineProperty(_componentCls, "".concat(componentCls, "-handler-wrap"), _defineProperty({ position: 'absolute', insetBlockStart: 0, insetInlineEnd: 0, width: token.handleWidth, height: '100%', background: colorBgContainer, borderStartStartRadius: 0, borderStartEndRadius: controlRadius, borderEndEndRadius: controlRadius, borderEndStartRadius: 0, opacity: handleVisible === true ? 1 : 0, display: 'flex', flexDirection: 'column', alignItems: 'stretch', transition: "opacity ".concat(motionDurationMid, " linear ").concat(motionDurationFast) }, "".concat(componentCls, "-handler"), _defineProperty({ display: 'flex', alignItems: 'center', justifyContent: 'center', flex: 'auto', height: '40%' }, "\n ".concat(componentCls, "-handler-up-inner,\n ").concat(componentCls, "-handler-down-inner\n "), { marginInlineEnd: 0, fontSize: token.handleFontSize }))), _defineProperty(_componentCls, "".concat(componentCls, "-handler"), { height: '50%', overflow: 'hidden', color: colorTextDescription, fontWeight: 'bold', lineHeight: 0, textAlign: 'center', cursor: 'pointer', borderInlineStart: "".concat(controlLineWidth, "px ").concat(controlLineType, " ").concat(colorBorder), transition: "all ".concat(motionDurationFast, " linear"), '&:active': { background: token.colorFillAlter }, // Hover '&:hover': _defineProperty({ height: "60%" }, "\n ".concat(componentCls, "-handler-up-inner,\n ").concat(componentCls, "-handler-down-inner\n "), { color: colorPrimary }), '&-up-inner, &-down-inner': _extends(_extends({}, resetIcon()), { color: colorTextDescription, transition: "all ".concat(motionDurationFast, " linear"), userSelect: 'none' }) }), _defineProperty(_componentCls, "".concat(componentCls, "-handler-up"), { borderStartEndRadius: controlRadius }), _defineProperty(_componentCls, "".concat(componentCls, "-handler-down"), { borderBlockStart: "".concat(controlLineWidth, "px ").concat(controlLineType, " ").concat(colorBorder), borderEndEndRadius: controlRadius }), _defineProperty(_componentCls, '&-disabled, &-readonly', _defineProperty({}, "".concat(componentCls, "-handler-wrap"), { display: 'none' })), _defineProperty(_componentCls, "\n ".concat(componentCls, "-handler-up-disabled,\n ").concat(componentCls, "-handler-down-disabled\n "), { cursor: 'not-allowed' }), _defineProperty(_componentCls, "\n ".concat(componentCls, "-handler-up-disabled:hover &-handler-up-inner,\n ").concat(componentCls, "-handler-down-disabled:hover &-handler-down-inner\n "), { color: colorTextDisabled }), _componentCls)), // Border-less _defineProperty({}, "".concat(componentCls, "-borderless"), _defineProperty({ borderColor: 'transparent', boxShadow: 'none' }, "".concat(componentCls, "-handler-down"), { borderBlockStartWidth: 0 }))]; }; var genAffixWrapperStyles = function genAffixWrapperStyles(token) { var _extends4; var componentCls = token.componentCls, inputPaddingHorizontal = token.inputPaddingHorizontal, inputAffixPadding = token.inputAffixPadding, controlWidth = token.controlWidth, controlRadiusLG = token.controlRadiusLG, controlRadiusSM = token.controlRadiusSM; return _defineProperty({}, "".concat(componentCls, "-affix-wrapper"), _extends(_extends(_extends({}, genBasicInputStyle(token)), genStatusStyle(token)), (_extends4 = { // or number handler will cover form status position: 'relative', display: 'inline-flex', width: controlWidth, padding: 0, paddingInlineStart: inputPaddingHorizontal, '&-lg': { borderRadius: controlRadiusLG }, '&-sm': { borderRadius: controlRadiusSM }, '&:not(&-disabled):hover': _extends(_extends({}, genHoverStyle(token)), { zIndex: 1 }), '&-focused, &:focus': { zIndex: 1 }, '&-disabled': _defineProperty({}, "".concat(componentCls, "[disabled]"), { background: 'transparent' }) }, _defineProperty(_extends4, "> div".concat(componentCls), _defineProperty({ width: '100%', border: 'none', outline: 'none' }, "&".concat(componentCls, "-focused"), { boxShadow: 'none !important' })), _defineProperty(_extends4, "input".concat(componentCls, "-input"), { padding: 0 }), _defineProperty(_extends4, '&::before', { width: 0, visibility: 'hidden', content: '"\\a0"' }), _defineProperty(_extends4, "".concat(componentCls, "-handler-wrap"), { zIndex: 2 }), _defineProperty(_extends4, componentCls, { '&-prefix, &-suffix': { display: 'flex', flex: 'none', alignItems: 'center', pointerEvents: 'none' }, '&-prefix': { marginInlineEnd: inputAffixPadding }, '&-suffix': { position: 'absolute', insetBlockStart: 0, insetInlineEnd: 0, zIndex: 1, height: '100%', marginInlineEnd: inputPaddingHorizontal, marginInlineStart: inputAffixPadding } }), _extends4))); }; // ============================== Export ============================== export default genComponentStyleHook('InputNumber', function (token) { var inputNumberToken = initInputToken(token); return [genInputNumberStyles(inputNumberToken), genAffixWrapperStyles(inputNumberToken)]; }, function (token) { return { controlWidth: 90, handleWidth: token.controlHeightSM - token.controlLineWidth * 2, handleFontSize: token.fontSize / 2, handleVisible: 'auto' }; });