Initial commit
This commit is contained in:
52
node_modules/react-bootstrap/es/Pager.js
generated
vendored
Normal file
52
node_modules/react-bootstrap/es/Pager.js
generated
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
import _extends from "@babel/runtime-corejs2/helpers/esm/extends";
|
||||
import _objectWithoutPropertiesLoose from "@babel/runtime-corejs2/helpers/esm/objectWithoutPropertiesLoose";
|
||||
import _inheritsLoose from "@babel/runtime-corejs2/helpers/esm/inheritsLoose";
|
||||
import classNames from 'classnames';
|
||||
import React, { cloneElement } from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import PagerItem from './PagerItem';
|
||||
import { bsClass, getClassSet, splitBsProps } from './utils/bootstrapUtils';
|
||||
import createChainedFunction from './utils/createChainedFunction';
|
||||
import ValidComponentChildren from './utils/ValidComponentChildren';
|
||||
var propTypes = {
|
||||
onSelect: PropTypes.func
|
||||
};
|
||||
|
||||
var Pager =
|
||||
/*#__PURE__*/
|
||||
function (_React$Component) {
|
||||
_inheritsLoose(Pager, _React$Component);
|
||||
|
||||
function Pager() {
|
||||
return _React$Component.apply(this, arguments) || this;
|
||||
}
|
||||
|
||||
var _proto = Pager.prototype;
|
||||
|
||||
_proto.render = function render() {
|
||||
var _this$props = this.props,
|
||||
onSelect = _this$props.onSelect,
|
||||
className = _this$props.className,
|
||||
children = _this$props.children,
|
||||
props = _objectWithoutPropertiesLoose(_this$props, ["onSelect", "className", "children"]);
|
||||
|
||||
var _splitBsProps = splitBsProps(props),
|
||||
bsProps = _splitBsProps[0],
|
||||
elementProps = _splitBsProps[1];
|
||||
|
||||
var classes = getClassSet(bsProps);
|
||||
return React.createElement("ul", _extends({}, elementProps, {
|
||||
className: classNames(className, classes)
|
||||
}), ValidComponentChildren.map(children, function (child) {
|
||||
return cloneElement(child, {
|
||||
onSelect: createChainedFunction(child.props.onSelect, onSelect)
|
||||
});
|
||||
}));
|
||||
};
|
||||
|
||||
return Pager;
|
||||
}(React.Component);
|
||||
|
||||
Pager.propTypes = propTypes;
|
||||
Pager.Item = PagerItem;
|
||||
export default bsClass('pager', Pager);
|
||||
Reference in New Issue
Block a user