igniteui-webcomponents-inputs
Version:
Ignite UI Web Components inputs components.
35 lines (34 loc) • 1.41 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";
/**
* @hidden
*/
export let SuffixVisualModelExport = /*@__PURE__*/ (() => {
class SuffixVisualModelExport extends Base {
constructor() {
super(...arguments);
this.a = 0;
this.c = false;
this.b = false;
this.d = null;
}
e() {
let a = new StringBuilder(0);
a.l("{");
a.l("shiftType : " + this.a + ", ");
a.l("isHover : " + this.c + ", ");
a.l("isDisabled : " + this.b + ", ");
a.l("name : \"" + this.d + "\", ");
a.l("}");
return a.toString();
}
}
SuffixVisualModelExport.$t = /*@__PURE__*/ markType(SuffixVisualModelExport, 'SuffixVisualModelExport');
return SuffixVisualModelExport;
})();