igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
165 lines (164 loc) • 5.1 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var WebDropdownDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebDropdownDescription, _super);
function WebDropdownDescription() {
var _this = _super.call(this) || this;
_this.h = false;
_this.i = false;
_this.s = null;
_this.t = null;
_this.u = null;
_this.f = false;
_this.p = 0;
_this.g = false;
_this.j = false;
_this.v = null;
_this.r = null;
return _this;
}
WebDropdownDescription.prototype.get_type = function () {
return "WebDropdown";
};
Object.defineProperty(WebDropdownDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "keepOpenOnSelect", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
this.e("KeepOpenOnSelect");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "open", {
get: function () {
return this.i;
},
set: function (a) {
this.i = a;
this.e("Open");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "placement", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.e("Placement");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "positionStrategy", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.e("PositionStrategy");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "scrollStrategy", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.e("ScrollStrategy");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "flip", {
get: function () {
return this.f;
},
set: function (a) {
this.f = a;
this.e("Flip");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "distance", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.e("Distance");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "keepOpenOnOutsideClick", {
get: function () {
return this.g;
},
set: function (a) {
this.g = a;
this.e("KeepOpenOnOutsideClick");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "sameWidth", {
get: function () {
return this.j;
},
set: function (a) {
this.j = a;
this.e("SameWidth");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "size", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.e("Size");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDropdownDescription.prototype, "changeRef", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.e("ChangeRef");
},
enumerable: false,
configurable: true
});
WebDropdownDescription.$t = markType(WebDropdownDescription, 'WebDropdownDescription', Description.$);
return WebDropdownDescription;
}(Description));
export { WebDropdownDescription };