UNPKG

igniteui-react-core

Version:
105 lines (104 loc) 3.46 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var WebOverlaySettingsDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebOverlaySettingsDescription, _super); function WebOverlaySettingsDescription() { var _this = _super.call(this) || this; _this.r = null; _this.h = null; _this.j = null; _this.n = false; _this.m = false; _this.l = false; return _this; } WebOverlaySettingsDescription.prototype.get_type = function () { return "WebOverlaySettings"; }; Object.defineProperty(WebOverlaySettingsDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebOverlaySettingsDescription.prototype, "target", { get: function () { return this.r; }, set: function (a) { this.r = a; this.g("Target"); }, enumerable: false, configurable: true }); Object.defineProperty(WebOverlaySettingsDescription.prototype, "positionStrategy", { get: function () { return this.h; }, set: function (a) { this.h = a; this.g("PositionStrategy"); }, enumerable: false, configurable: true }); Object.defineProperty(WebOverlaySettingsDescription.prototype, "scrollStrategy", { get: function () { return this.j; }, set: function (a) { this.j = a; this.g("ScrollStrategy"); }, enumerable: false, configurable: true }); Object.defineProperty(WebOverlaySettingsDescription.prototype, "modal", { get: function () { return this.n; }, set: function (a) { this.n = a; this.g("Modal"); }, enumerable: false, configurable: true }); Object.defineProperty(WebOverlaySettingsDescription.prototype, "closeOnOutsideClick", { get: function () { return this.m; }, set: function (a) { this.m = a; this.g("CloseOnOutsideClick"); }, enumerable: false, configurable: true }); Object.defineProperty(WebOverlaySettingsDescription.prototype, "closeOnEscape", { get: function () { return this.l; }, set: function (a) { this.l = a; this.g("CloseOnEscape"); }, enumerable: false, configurable: true }); WebOverlaySettingsDescription.$t = markType(WebOverlaySettingsDescription, 'WebOverlaySettingsDescription', Description.$); return WebOverlaySettingsDescription; }(Description)); export { WebOverlaySettingsDescription };