igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
182 lines (181 loc) • 5.5 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 { WebInputBaseDescription } from "./WebInputBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebInputDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebInputDescription, _super);
function WebInputDescription() {
var _this = _super.call(this) || this;
_this.a0 = null;
_this.ax = null;
_this.ay = null;
_this.az = null;
_this.ao = 0;
_this.am = 0;
_this.an = 0;
_this.al = 0;
_this.ap = 0;
_this.ah = false;
_this.av = null;
_this.ai = false;
_this.aw = null;
return _this;
}
WebInputDescription.prototype.get_type = function () {
return "WebInput";
};
Object.defineProperty(WebInputDescription.prototype, "value", {
get: function () {
return this.a0;
},
set: function (a) {
this.a0 = a;
this.j("Value");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebInputDescription.prototype, "displayType", {
get: function () {
return this.ax;
},
set: function (a) {
this.ax = a;
this.j("DisplayType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebInputDescription.prototype, "inputMode", {
get: function () {
return this.ay;
},
set: function (a) {
this.ay = a;
this.j("InputMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebInputDescription.prototype, "pattern", {
get: function () {
return this.az;
},
set: function (a) {
this.az = a;
this.j("Pattern");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebInputDescription.prototype, "minLength", {
get: function () {
return this.ao;
},
set: function (a) {
this.ao = a;
this.j("MinLength");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebInputDescription.prototype, "maxLength", {
get: function () {
return this.am;
},
set: function (a) {
this.am = a;
this.j("MaxLength");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebInputDescription.prototype, "min", {
get: function () {
return this.an;
},
set: function (a) {
this.an = a;
this.j("Min");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebInputDescription.prototype, "max", {
get: function () {
return this.al;
},
set: function (a) {
this.al = a;
this.j("Max");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebInputDescription.prototype, "step", {
get: function () {
return this.ap;
},
set: function (a) {
this.ap = a;
this.j("Step");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebInputDescription.prototype, "autofocus", {
get: function () {
return this.ah;
},
set: function (a) {
this.ah = a;
this.j("Autofocus");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebInputDescription.prototype, "autocomplete", {
get: function () {
return this.av;
},
set: function (a) {
this.av = a;
this.j("Autocomplete");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebInputDescription.prototype, "validateOnly", {
get: function () {
return this.ai;
},
set: function (a) {
this.ai = a;
this.j("ValidateOnly");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebInputDescription.prototype, "changeRef", {
get: function () {
return this.aw;
},
set: function (a) {
this.aw = a;
this.j("ChangeRef");
},
enumerable: false,
configurable: true
});
WebInputDescription.$t = markType(WebInputDescription, 'WebInputDescription', WebInputBaseDescription.$);
return WebInputDescription;
}(WebInputBaseDescription));
export { WebInputDescription };