office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
33 lines (31 loc) • 1.44 kB
JavaScript
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
define(["require", "exports", "react", "../../utilities/css", "./Check.scss"], function (require, exports, React, css_1) {
"use strict";
var Check = (function (_super) {
__extends(Check, _super);
function Check() {
return _super !== null && _super.apply(this, arguments) || this;
}
Check.prototype.shouldComponentUpdate = function (newProps) {
return this.props.isChecked !== newProps.isChecked || this.props.checked !== newProps.checked;
};
Check.prototype.render = function () {
var _a = this.props, isChecked = _a.isChecked, checked = _a.checked;
return (React.createElement("div", { className: css_1.css('ms-Check', {
'is-checked': isChecked || checked
}) },
React.createElement("div", { className: 'ms-Icon ms-Check-background' }),
React.createElement("i", { className: 'ms-Check-check ms-Icon ms-Icon--CheckMark' })));
};
return Check;
}(React.Component));
Check.defaultProps = {
isChecked: false
};
exports.Check = Check;
});
//# sourceMappingURL=Check.js.map