Initial commit
This commit is contained in:
101
node_modules/react-bootstrap/lib/FormGroup.js
generated
vendored
Normal file
101
node_modules/react-bootstrap/lib/FormGroup.js
generated
vendored
Normal file
@@ -0,0 +1,101 @@
|
||||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime-corejs2/helpers/interopRequireDefault");
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _extends2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/extends"));
|
||||
|
||||
var _objectWithoutPropertiesLoose2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/objectWithoutPropertiesLoose"));
|
||||
|
||||
var _inheritsLoose2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/inheritsLoose"));
|
||||
|
||||
var _classnames = _interopRequireDefault(require("classnames"));
|
||||
|
||||
var _react = _interopRequireDefault(require("react"));
|
||||
|
||||
var _propTypes = _interopRequireDefault(require("prop-types"));
|
||||
|
||||
var _bootstrapUtils = require("./utils/bootstrapUtils");
|
||||
|
||||
var _StyleConfig = require("./utils/StyleConfig");
|
||||
|
||||
var _ValidComponentChildren = _interopRequireDefault(require("./utils/ValidComponentChildren"));
|
||||
|
||||
var propTypes = {
|
||||
/**
|
||||
* Sets `id` on `<FormControl>` and `htmlFor` on `<FormGroup.Label>`.
|
||||
*/
|
||||
controlId: _propTypes.default.string,
|
||||
validationState: _propTypes.default.oneOf(['success', 'warning', 'error', null])
|
||||
};
|
||||
var childContextTypes = {
|
||||
$bs_formGroup: _propTypes.default.object.isRequired
|
||||
};
|
||||
|
||||
var FormGroup =
|
||||
/*#__PURE__*/
|
||||
function (_React$Component) {
|
||||
(0, _inheritsLoose2.default)(FormGroup, _React$Component);
|
||||
|
||||
function FormGroup() {
|
||||
return _React$Component.apply(this, arguments) || this;
|
||||
}
|
||||
|
||||
var _proto = FormGroup.prototype;
|
||||
|
||||
_proto.getChildContext = function getChildContext() {
|
||||
var _this$props = this.props,
|
||||
controlId = _this$props.controlId,
|
||||
validationState = _this$props.validationState;
|
||||
return {
|
||||
$bs_formGroup: {
|
||||
controlId: controlId,
|
||||
validationState: validationState
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
_proto.hasFeedback = function hasFeedback(children) {
|
||||
var _this = this;
|
||||
|
||||
return _ValidComponentChildren.default.some(children, function (child) {
|
||||
return child.props.bsRole === 'feedback' || child.props.children && _this.hasFeedback(child.props.children);
|
||||
});
|
||||
};
|
||||
|
||||
_proto.render = function render() {
|
||||
var _this$props2 = this.props,
|
||||
validationState = _this$props2.validationState,
|
||||
className = _this$props2.className,
|
||||
children = _this$props2.children,
|
||||
props = (0, _objectWithoutPropertiesLoose2.default)(_this$props2, ["validationState", "className", "children"]);
|
||||
|
||||
var _splitBsPropsAndOmit = (0, _bootstrapUtils.splitBsPropsAndOmit)(props, ['controlId']),
|
||||
bsProps = _splitBsPropsAndOmit[0],
|
||||
elementProps = _splitBsPropsAndOmit[1];
|
||||
|
||||
var classes = (0, _extends2.default)({}, (0, _bootstrapUtils.getClassSet)(bsProps), {
|
||||
'has-feedback': this.hasFeedback(children)
|
||||
});
|
||||
|
||||
if (validationState) {
|
||||
classes["has-" + validationState] = true;
|
||||
}
|
||||
|
||||
return _react.default.createElement("div", (0, _extends2.default)({}, elementProps, {
|
||||
className: (0, _classnames.default)(className, classes)
|
||||
}), children);
|
||||
};
|
||||
|
||||
return FormGroup;
|
||||
}(_react.default.Component);
|
||||
|
||||
FormGroup.propTypes = propTypes;
|
||||
FormGroup.childContextTypes = childContextTypes;
|
||||
|
||||
var _default = (0, _bootstrapUtils.bsClass)('form-group', (0, _bootstrapUtils.bsSizes)([_StyleConfig.Size.LARGE, _StyleConfig.Size.SMALL], FormGroup));
|
||||
|
||||
exports.default = _default;
|
||||
module.exports = exports["default"];
|
||||
Reference in New Issue
Block a user