igniteui-react-inputs
Version:
Ignite UI React input components.
43 lines (42 loc) • 1.81 kB
JavaScript
/*
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, markType } from "igniteui-react-core";
import { StringBuilder } from "igniteui-react-core";
/**
* @hidden
*/
var ColorEditorVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ColorEditorVisualModelExport, _super);
function ColorEditorVisualModelExport() {
var _this = _super.apply(this, __spreadArray([], __read(arguments), false)) || this;
_this.e = 0;
_this.f = 0;
_this.g = 0;
_this.d = 0;
_this.b = 0;
_this.a = null;
_this.c = false;
return _this;
}
ColorEditorVisualModelExport.prototype.h = function () {
var a = new StringBuilder(0);
a.l("{");
a.l("left : " + this.e + ", ");
a.l("top : " + this.f + ", ");
a.l("height : " + this.d + ", ");
a.l("width : " + this.g + ", ");
a.l("baseTheme : " + this.b + ", ");
a.l("value : " + this.a.serialize() + ", ");
a.l("isDisabled : " + this.c + ", ");
a.l("}");
return a.toString();
};
ColorEditorVisualModelExport.$t = markType(ColorEditorVisualModelExport, 'ColorEditorVisualModelExport');
return ColorEditorVisualModelExport;
}(Base));
export { ColorEditorVisualModelExport };