igniteui-webcomponents-inputs
Version:
Ignite UI Web Components inputs components.
39 lines (38 loc) • 1.66 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 { Base, markType } from "igniteui-webcomponents-core";
import { StringBuilder } from "igniteui-webcomponents-core";
let ColorEditorVisualModelExport = /*@__PURE__*/ (() => {
class ColorEditorVisualModelExport extends Base {
constructor() {
super(...arguments);
this.e = 0;
this.f = 0;
this.g = 0;
this.d = 0;
this.b = 0;
this.a = null;
this.c = false;
}
h() {
let 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 = /*@__PURE__*/ markType(ColorEditorVisualModelExport, 'ColorEditorVisualModelExport');
return ColorEditorVisualModelExport;
})();
export { ColorEditorVisualModelExport };