UNPKG

igniteui-react-inputs

Version:

Ignite UI React input components.

46 lines (45 loc) 2.04 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { __extends, __read, __spreadArray } from "tslib"; import { Base, enumGetBox, markType } from "igniteui-react-core"; import { BaseControlTheme_$type } from "igniteui-react-core"; import { StringBuilder } from "igniteui-react-core"; /** * @hidden */ var CheckboxListVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) { __extends(CheckboxListVisualModelExport, _super); function CheckboxListVisualModelExport() { var _this = _super.apply(this, __spreadArray([], __read(arguments), false)) || this; _this.f = 0; _this.g = 0; _this.h = 0; _this.e = 0; _this.c = 0; _this.b = null; _this.a = null; _this.d = 0; return _this; } CheckboxListVisualModelExport.prototype.i = function () { var a = new StringBuilder(0); a.l("{"); a.l("left : " + this.f + ", "); a.l("top : " + this.g + ", "); a.l("height : " + this.e + ", "); a.l("width : " + this.h + ", "); a.l("baseTheme : " + enumGetBox(BaseControlTheme_$type, this.c) + ", "); a.l("backgroundColor : " + this.b.serialize() + ", "); a.l("actualSelectAllCaptionTextColor : " + this.a.serialize() + ", "); a.l("actualRowHeight : " + this.d); a.l("}"); return a.toString(); }; CheckboxListVisualModelExport.$t = markType(CheckboxListVisualModelExport, 'CheckboxListVisualModelExport'); return CheckboxListVisualModelExport; }(Base)); export { CheckboxListVisualModelExport };