UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

165 lines (164 loc) 5.1 kB
/* 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var WebInputBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebInputBaseDescription, _super); function WebInputBaseDescription() { var _this = _super.call(this) || this; _this.m = false; _this.n = false; _this.aa = null; _this.z = null; _this.k = false; _this.o = false; _this.u = null; _this.l = false; _this.y = null; _this.x = null; _this.w = null; return _this; } WebInputBaseDescription.prototype.get_type = function () { return "WebInputBase"; }; Object.defineProperty(WebInputBaseDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebInputBaseDescription.prototype, "outlined", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("Outlined"); }, enumerable: false, configurable: true }); Object.defineProperty(WebInputBaseDescription.prototype, "readOnly", { get: function () { return this.n; }, set: function (a) { this.n = a; this.j("ReadOnly"); }, enumerable: false, configurable: true }); Object.defineProperty(WebInputBaseDescription.prototype, "placeholder", { get: function () { return this.aa; }, set: function (a) { this.aa = a; this.j("Placeholder"); }, enumerable: false, configurable: true }); Object.defineProperty(WebInputBaseDescription.prototype, "label", { get: function () { return this.z; }, set: function (a) { this.z = a; this.j("Label"); }, enumerable: false, configurable: true }); Object.defineProperty(WebInputBaseDescription.prototype, "disabled", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("Disabled"); }, enumerable: false, configurable: true }); Object.defineProperty(WebInputBaseDescription.prototype, "required", { get: function () { return this.o; }, set: function (a) { this.o = a; this.j("Required"); }, enumerable: false, configurable: true }); Object.defineProperty(WebInputBaseDescription.prototype, "defaultValue", { get: function () { return this.u; }, set: function (a) { this.u = a; this.j("DefaultValue"); }, enumerable: false, configurable: true }); Object.defineProperty(WebInputBaseDescription.prototype, "invalid", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("Invalid"); }, enumerable: false, configurable: true }); Object.defineProperty(WebInputBaseDescription.prototype, "inputOcurredRef", { get: function () { return this.y; }, set: function (a) { this.y = a; this.j("InputOcurredRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebInputBaseDescription.prototype, "focusRef", { get: function () { return this.x; }, set: function (a) { this.x = a; this.j("FocusRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebInputBaseDescription.prototype, "blurRef", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("BlurRef"); }, enumerable: false, configurable: true }); WebInputBaseDescription.$t = markType(WebInputBaseDescription, 'WebInputBaseDescription', Description.$); return WebInputBaseDescription; }(Description)); export { WebInputBaseDescription };