UNPKG

react-web-native-sketch

Version:

[TODO: We need an overview of how this can be used via npm vs as a local package]

53 lines 2.2 kB
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var __assign = (this && this.__assign) || Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; Object.defineProperty(exports, "__esModule", { value: true }); var core_1 = require("@material-ui/core"); var React = require("react"); var __1 = require("../.."); var styles = function () { return ({ container: { flex: 1, flexDirection: 'column', minWidth: 100, minHeight: 100, }, label: { flexShrink: 0, }, }); }; var CCheckbox = /** @class */ (function (_super) { __extends(CCheckbox, _super); function CCheckbox() { return _super !== null && _super.apply(this, arguments) || this; } CCheckbox.prototype.render = function () { var _a = this.props, error = _a.error, onChange = _a.onChange, title = _a.title, value = _a.value, classes = _a.classes; return (React.createElement(core_1.FormControl, { error: !!error }, React.createElement(__1.View, null, title && React.createElement(core_1.InputLabel, { classes: { root: classes.label, } }, title), React.createElement("input", __assign({ type: 'checkbox' }, (value !== null && value !== undefined ? { checked: value } : {}), { onChange: function (value) { return onChange(value); } }))))); }; return CCheckbox; }(React.PureComponent)); exports.Checkbox = __1.createStyles(styles, 'Checkbox')(CCheckbox); //# sourceMappingURL=Checkbox.js.map