igniteui-webcomponents-inputs
Version:
Ignite UI Web Components inputs components.
42 lines (41 loc) • 1.76 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 } from "tslib";
import { Base, markType } from "igniteui-webcomponents-core";
import { StringBuilder } from "igniteui-webcomponents-core";
/**
* @hidden
*/
export var ColorEditorVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ColorEditorVisualModelExport, _super);
function ColorEditorVisualModelExport() {
var _this = _super !== null && _super.apply(this, arguments) || 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));