UNPKG

react-kube

Version:

Kube CSS in React Components

64 lines (48 loc) 3.02 kB
"use strict"; var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) subClass.__proto__ = superClass; } var _react = require("react"); var _react2 = _interopRequireDefault(_react); var _classnames = require("classnames"); var _classnames2 = _interopRequireDefault(_classnames); var Select = (function (_React$Component) { function Select() { _classCallCheck(this, Select); if (_React$Component != null) { _React$Component.apply(this, arguments); } } _inherits(Select, _React$Component); _createClass(Select, [{ key: "render", value: function render() { var styles = this.props.width ? "width-" + this.props.width : ""; return _react2["default"].createElement( "select", { className: (0, _classnames2["default"])(this.props.className, styles), disabled: this.props.disabled, id: this.props.id, multiple: this.props.multiple, name: this.props.name, onChange: this.props.onChange, size: this.props.size }, this.props.children, this.props.description ? _react2["default"].createElement( "div", { className: "forms-desc" }, this.props.description ) : null ); } }]); return Select; })(_react2["default"].Component); Select.propTypes = { children: _react2["default"].PropTypes.node.isRequired, className: _react2["default"].PropTypes.string, description: _react2["default"].PropTypes.string, disabled: _react2["default"].PropTypes.bool, id: _react2["default"].PropTypes.string, multiple: _react2["default"].PropTypes.bool, name: _react2["default"].PropTypes.string, onChange: _react2["default"].PropTypes.func, size: _react2["default"].PropTypes.oneOfType([_react2["default"].PropTypes.string, _react2["default"].PropTypes.number]), width: _react2["default"].PropTypes.oneOfType([_react2["default"].PropTypes.string, _react2["default"].PropTypes.number]) }; module.exports = Select;