|
| 1 | +'use strict'; |
| 2 | + |
| 3 | +Object.defineProperty(exports, "__esModule", { |
| 4 | + value: true |
| 5 | +}); |
| 6 | + |
| 7 | +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; }; }(); |
| 8 | + |
| 9 | +var _react = require('react'); |
| 10 | + |
| 11 | +var React = _interopRequireWildcard(_react); |
| 12 | + |
| 13 | +function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } } |
| 14 | + |
| 15 | +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } |
| 16 | + |
| 17 | +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } |
| 18 | + |
| 19 | +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) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } |
| 20 | + |
| 21 | +var Component = function (_React$Component) { |
| 22 | + _inherits(Component, _React$Component); |
| 23 | + |
| 24 | + function Component() { |
| 25 | + _classCallCheck(this, Component); |
| 26 | + |
| 27 | + return _possibleConstructorReturn(this, Object.getPrototypeOf(Component).apply(this, arguments)); |
| 28 | + } |
| 29 | + |
| 30 | + _createClass(Component, [{ |
| 31 | + key: 'render', |
| 32 | + value: function render() { |
| 33 | + return React.createElement('div', null); |
| 34 | + } |
| 35 | + }]); |
| 36 | + |
| 37 | + return Component; |
| 38 | +}(React.Component); |
| 39 | + |
| 40 | +Component.propTypes = { |
| 41 | + /** |
| 42 | + * This is a jsdoc comment for optionalAny. |
| 43 | + */ |
| 44 | + optionalAny: React.PropTypes.any, |
| 45 | + optionalArray: React.PropTypes.array, |
| 46 | + optionalBool: React.PropTypes.bool, |
| 47 | + optionalFunc: React.PropTypes.func, |
| 48 | + optionalNumber: React.PropTypes.number, |
| 49 | + optionalObject: React.PropTypes.object, |
| 50 | + optionalString: React.PropTypes.string, |
| 51 | + optionalNode: React.PropTypes.node, |
| 52 | + optionalElement: React.PropTypes.element, |
| 53 | + optionalMessage: React.PropTypes.instanceOf(Message), |
| 54 | + //optionalEnum: React.PropTypes.oneOf(['News', 'Photos']), |
| 55 | + optionalUnion: React.PropTypes.oneOfType([React.PropTypes.string, React.PropTypes.number]), |
| 56 | + optionalArrayOf: React.PropTypes.arrayOf(React.PropTypes.number), |
| 57 | + //optionalObjectOf: React.PropTypes.objectOf(React.PropTypes.number), |
| 58 | + //optionalObjectWithShape: React.PropTypes.shape({ |
| 59 | + // color: React.PropTypes.string, |
| 60 | + // fontSize: React.PropTypes.number |
| 61 | + //}), |
| 62 | + requiredFunc: React.PropTypes.func.isRequired, |
| 63 | + requiredAny: React.PropTypes.any.isRequired, |
| 64 | + requiredUnion: React.PropTypes.oneOfType([React.PropTypes.array, React.PropTypes.bool]).isRequired, |
| 65 | + requiredArrayOf: React.PropTypes.arrayOf(React.PropTypes.string).isRequired |
| 66 | +}; |
| 67 | +exports.default = Component; |
| 68 | + |
0 commit comments