UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

146 lines (145 loc) 4.61 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 { 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.ab = null; _this.ac = null; _this.q = false; _this.u = 0; _this.r = false; _this.aa = null; _this.z = null; _this.y = null; _this.x = null; _this.w = null; return _this; } WebDropdownDescription.prototype.get_type = function () { return "WebDropdown"; }; Object.defineProperty(WebDropdownDescription.prototype, "placement", { get: function () { return this.ab; }, set: function (a) { this.ab = a; this.g("Placement"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDropdownDescription.prototype, "scrollStrategy", { get: function () { return this.ac; }, set: function (a) { this.ac = a; this.g("ScrollStrategy"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDropdownDescription.prototype, "flip", { get: function () { return this.q; }, set: function (a) { this.q = a; this.g("Flip"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDropdownDescription.prototype, "distance", { get: function () { return this.u; }, set: function (a) { this.u = a; this.g("Distance"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDropdownDescription.prototype, "sameWidth", { get: function () { return this.r; }, set: function (a) { this.r = a; this.g("SameWidth"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDropdownDescription.prototype, "openingRef", { get: function () { return this.aa; }, set: function (a) { this.aa = a; this.g("OpeningRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDropdownDescription.prototype, "openedRef", { get: function () { return this.z; }, set: function (a) { this.z = a; this.g("OpenedRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDropdownDescription.prototype, "closingRef", { get: function () { return this.y; }, set: function (a) { this.y = a; this.g("ClosingRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDropdownDescription.prototype, "closedRef", { get: function () { return this.x; }, set: function (a) { this.x = a; this.g("ClosedRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDropdownDescription.prototype, "changeRef", { get: function () { return this.w; }, set: function (a) { this.w = a; this.g("ChangeRef"); }, enumerable: false, configurable: true }); WebDropdownDescription.$t = markType(WebDropdownDescription, 'WebDropdownDescription', WebBaseComboBoxLikeDescription.$); return WebDropdownDescription; }(WebBaseComboBoxLikeDescription)); export { WebDropdownDescription };