Brand JS diff
55 removals
Lines | |
---|---|
Total | 50 |
Removed | -92.0%46 |
Words | |
Total | 392 |
Removed | -87.2%342 |
50 lines
14 additions
Lines | |
---|---|
Total | 12 |
Added | +66.7%8 |
Words | |
Total | 78 |
Added | +35.9%28 |
12 lines
"use strict";
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
Object.defineProperty(exports, "__esModule", {
const tslib_1 = require("tslib");
value: true
const React = tslib_1.__importStar(require("react"));
});
const react_styles_1 = require("@patternfly/react-styles");
exports.Brand = void 0;
exports.Brand = (_a) => {
var { className = '', src = '', alt } = _a, props = tslib_1.__rest(_a, ["className", "src", "alt"]);
var _propTypes = _interopRequireDefault(require("prop-types"));
return (
var React = _interopRequireWildcard(require("react"));
var _reactStyles = require("@patternfly/react-styles");
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; if (obj != null) { var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
var Brand = function Brand(_ref) {
var _ref$className = _ref.className,
className = _ref$className === void 0 ? '' : _ref$className,
_ref$src = _ref.src,
src = _ref$src === void 0 ? '' : _ref$src,
alt = _ref.alt,
props = _objectWithoutProperties(_ref, ["className", "src", "alt"]);
return (
/** the brand component currently contains no styling the 'pf-c-brand' string will be used for the className */
/** the brand component currently contains no styling the 'pf-c-brand' string will be used for the className */
React.createElement("img", _extends({}, props, {
React.createElement("img", Object.assign({}, props, { className: react_styles_1.css('pf-c-brand', className), src: src, alt: alt })));
className: (0, _reactStyles.css)('pf-c-brand', className),
src: src,
alt: alt
}))
);
};
exports.Brand = Brand;
Brand.propTypes = {
className: _propTypes["default"].string,
src: _propTypes["default"].string,
alt: _propTypes["default"].string.isRequired
};
};
//# sourceMappingURL=Brand.js.map
//# sourceMappingURL=Brand.js.map