igniteui-webcomponents-inputs
Version:
Ignite UI Web Components inputs components.
38 lines (37 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 { __extends } from "tslib";
import { Base, enumGetBox, markType } from "igniteui-webcomponents-core";
import { PrefixShiftType_$type } from "./PrefixShiftType";
import { StringBuilder } from "igniteui-webcomponents-core";
/**
* @hidden
*/
var PrefixVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PrefixVisualModelExport, _super);
function PrefixVisualModelExport() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.a = 0;
_this.c = false;
_this.b = false;
_this.d = null;
return _this;
}
PrefixVisualModelExport.prototype.e = function () {
var a = new StringBuilder(0);
a.l("{");
a.l("shiftType : " + enumGetBox(PrefixShiftType_$type, this.a) + ", ");
a.l("isHover : " + this.c + ", ");
a.l("isDisabled : " + this.b + ", ");
a.l("name : \"" + this.d + "\", ");
a.l("}");
return a.toString();
};
PrefixVisualModelExport.$t = markType(PrefixVisualModelExport, 'PrefixVisualModelExport');
return PrefixVisualModelExport;
}(Base));
export { PrefixVisualModelExport };