UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

77 lines (76 loc) 2.83 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 { NativeUIComponent } from "./NativeUIComponent"; import { NativeUIInputDisplayType_$type } from "./NativeUIInputDisplayType"; import { enumGetBox, EnumUtil, markType } from "./type"; import { NativeUIDisplayDensity_$type } from "./NativeUIDisplayDensity"; /** * @hidden */ var NativeUIInput = /** @class */ /*@__PURE__*/ (function (_super) { __extends(NativeUIInput, _super); function NativeUIInput() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.av = null; _this.at = null; return _this; } Object.defineProperty(NativeUIInput.prototype, "ax", { get: function () { var a = this.o(0); return a == null ? 1 : EnumUtil.getEnumValue(NativeUIInputDisplayType_$type, a); }, set: function (a) { this.af(0, enumGetBox(NativeUIInputDisplayType_$type, a)); }, enumerable: false, configurable: true }); Object.defineProperty(NativeUIInput.prototype, "au", { get: function () { var a = this.o(1); return a == null ? 1 : EnumUtil.getEnumValue(NativeUIDisplayDensity_$type, a); }, set: function (a) { this.af(1, enumGetBox(NativeUIDisplayDensity_$type, a)); }, enumerable: false, configurable: true }); Object.defineProperty(NativeUIInput.prototype, "ay", { get: function () { var a = this.o(2); return a; }, set: function (a) { this.af(2, a); }, enumerable: false, configurable: true }); Object.defineProperty(NativeUIInput.prototype, "aw", { get: function () { return this.av; }, set: function (a) { var b = this.av; this.av = a; if (this.av != null) { this.x(0, this.av); } else { this.ad(0, b); } }, enumerable: false, configurable: true }); NativeUIInput.$t = markType(NativeUIInput, 'NativeUIInput', NativeUIComponent.$); return NativeUIInput; }(NativeUIComponent)); export { NativeUIInput };