UNPKG

858 BJavaScriptView Raw
1var __extends = (this && this.__extends) || (function () {
2 var extendStatics = Object.setPrototypeOf ||
3 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5 return function (d, b) {
6 extendStatics(d, b);
7 function __() { this.constructor = d; }
8 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9 };
10})();
11import { FieldBase } from './field-base';
12var CheckboxField = (function (_super) {
13 __extends(CheckboxField, _super);
14 function CheckboxField() {
15 var _this = _super !== null && _super.apply(this, arguments) || this;
16 _this.controlType = 'checkbox';
17 return _this;
18 }
19 return CheckboxField;
20}(FieldBase));
21export { CheckboxField };