igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
254 lines (253 loc) • 7.58 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 { WebBaseComboBoxLikeDescription } from "./WebBaseComboBoxLikeDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebSelectDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebSelectDescription, _super);
function WebSelectDescription() {
var _this = _super.call(this) || this;
_this.as = null;
_this.w = false;
_this.t = false;
_this.ad = 0;
_this.am = null;
_this.ap = null;
_this.aq = null;
_this.ar = null;
_this.u = false;
_this.x = false;
_this.af = null;
_this.v = false;
_this.ai = null;
_this.al = null;
_this.ah = null;
_this.ao = null;
_this.an = null;
_this.ak = null;
_this.aj = null;
return _this;
}
WebSelectDescription.prototype.get_type = function () {
return "WebSelect";
};
Object.defineProperty(WebSelectDescription.prototype, "value", {
get: function () {
return this.as;
},
set: function (a) {
this.as = a;
this.j("Value");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "outlined", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("Outlined");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "autofocus", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("Autofocus");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "distance", {
get: function () {
return this.ad;
},
set: function (a) {
this.ad = a;
this.j("Distance");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "label", {
get: function () {
return this.am;
},
set: function (a) {
this.am = a;
this.j("Label");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "placeholder", {
get: function () {
return this.ap;
},
set: function (a) {
this.ap = a;
this.j("Placeholder");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "placement", {
get: function () {
return this.aq;
},
set: function (a) {
this.aq = a;
this.j("Placement");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "scrollStrategy", {
get: function () {
return this.ar;
},
set: function (a) {
this.ar = a;
this.j("ScrollStrategy");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "disabled", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("Disabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "required", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("Required");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "defaultValue", {
get: function () {
return this.af;
},
set: function (a) {
this.af = a;
this.j("DefaultValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "invalid", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("Invalid");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "changeRef", {
get: function () {
return this.ai;
},
set: function (a) {
this.ai = a;
this.j("ChangeRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "focusRef", {
get: function () {
return this.al;
},
set: function (a) {
this.al = a;
this.j("FocusRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "blurRef", {
get: function () {
return this.ah;
},
set: function (a) {
this.ah = a;
this.j("BlurRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "openingRef", {
get: function () {
return this.ao;
},
set: function (a) {
this.ao = a;
this.j("OpeningRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "openedRef", {
get: function () {
return this.an;
},
set: function (a) {
this.an = a;
this.j("OpenedRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "closingRef", {
get: function () {
return this.ak;
},
set: function (a) {
this.ak = a;
this.j("ClosingRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSelectDescription.prototype, "closedRef", {
get: function () {
return this.aj;
},
set: function (a) {
this.aj = a;
this.j("ClosedRef");
},
enumerable: false,
configurable: true
});
WebSelectDescription.$t = markType(WebSelectDescription, 'WebSelectDescription', WebBaseComboBoxLikeDescription.$);
return WebSelectDescription;
}(WebBaseComboBoxLikeDescription));
export { WebSelectDescription };