igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
146 lines (145 loc) • 4.62 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 WebDropdownDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebDropdownDescription, _super);
function WebDropdownDescription() {
var _this = _super.call(this) || this;
_this.ae = null;
_this.af = null;
_this.t = false;
_this.x = 0;
_this.u = false;
_this.ad = null;
_this.ac = null;
_this.ab = null;
_this.aa = null;
_this.z = null;
return _this;
}
WebDropdownDescription.prototype.get_type = function () {
return "WebDropdown";
};
Object.defineProperty(WebDropdownDescription.prototype, "placement", {
get: function () {
return this.ae;
},
set: function (a) {
this.ae = a;
this.j("Placement");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "scrollStrategy", {
get: function () {
return this.af;
},
set: function (a) {
this.af = a;
this.j("ScrollStrategy");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "flip", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("Flip");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "distance", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("Distance");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "sameWidth", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("SameWidth");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "openingRef", {
get: function () {
return this.ad;
},
set: function (a) {
this.ad = a;
this.j("OpeningRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "openedRef", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.j("OpenedRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "closingRef", {
get: function () {
return this.ab;
},
set: function (a) {
this.ab = a;
this.j("ClosingRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "closedRef", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("ClosedRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "changeRef", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.j("ChangeRef");
},
enumerable: false,
configurable: true
});
WebDropdownDescription.$t = markType(WebDropdownDescription, 'WebDropdownDescription', WebBaseComboBoxLikeDescription.$);
return WebDropdownDescription;
}(WebBaseComboBoxLikeDescription));
export { WebDropdownDescription };