UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

309 lines (308 loc) 9.09 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 WebTextareaDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebTextareaDescription, _super); function WebTextareaDescription() { var _this = _super.call(this) || this; _this.ah = null; _this.ag = null; _this.am = null; _this.an = null; _this.y = 0; _this.z = 0; _this.m = false; _this.ao = null; _this.n = false; _this.ap = null; _this.aa = 0; _this.aq = null; _this.p = false; _this.ar = null; _this.q = false; _this.k = false; _this.o = false; _this.ae = null; _this.l = false; _this.al = null; _this.aj = null; _this.ak = null; _this.ai = null; return _this; } WebTextareaDescription.prototype.get_type = function () { return "WebTextarea"; }; Object.defineProperty(WebTextareaDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "autocomplete", { get: function () { return this.ah; }, set: function (a) { this.ah = a; this.j("Autocomplete"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "autocapitalize", { get: function () { return this.ag; }, set: function (a) { this.ag = a; this.j("Autocapitalize"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "inputMode", { get: function () { return this.am; }, set: function (a) { this.am = a; this.j("InputMode"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "label", { get: function () { return this.an; }, set: function (a) { this.an = a; this.j("Label"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "maxLength", { get: function () { return this.y; }, set: function (a) { this.y = a; this.j("MaxLength"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "minLength", { get: function () { return this.z; }, set: function (a) { this.z = a; this.j("MinLength"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "outlined", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("Outlined"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "placeholder", { get: function () { return this.ao; }, set: function (a) { this.ao = a; this.j("Placeholder"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "readOnly", { get: function () { return this.n; }, set: function (a) { this.n = a; this.j("ReadOnly"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "resize", { get: function () { return this.ap; }, set: function (a) { this.ap = a; this.j("Resize"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "rows", { get: function () { return this.aa; }, set: function (a) { this.aa = a; this.j("Rows"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "value", { get: function () { return this.aq; }, set: function (a) { this.aq = a; this.j("Value"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "spellcheck", { get: function () { return this.p; }, set: function (a) { this.p = a; this.j("Spellcheck"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "wrap", { get: function () { return this.ar; }, set: function (a) { this.ar = a; this.j("Wrap"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "validateOnly", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("ValidateOnly"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "disabled", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("Disabled"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "required", { get: function () { return this.o; }, set: function (a) { this.o = a; this.j("Required"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "defaultValue", { get: function () { return this.ae; }, set: function (a) { this.ae = a; this.j("DefaultValue"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "invalid", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("Invalid"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "inputRef", { get: function () { return this.al; }, set: function (a) { this.al = a; this.j("InputRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "changeRef", { get: function () { return this.aj; }, set: function (a) { this.aj = a; this.j("ChangeRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "focusRef", { get: function () { return this.ak; }, set: function (a) { this.ak = a; this.j("FocusRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTextareaDescription.prototype, "blurRef", { get: function () { return this.ai; }, set: function (a) { this.ai = a; this.j("BlurRef"); }, enumerable: false, configurable: true }); WebTextareaDescription.$t = markType(WebTextareaDescription, 'WebTextareaDescription', Description.$); return WebTextareaDescription; }(Description)); export { WebTextareaDescription };