igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
105 lines (104 loc) • 3.56 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 WebOverlaySettingsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebOverlaySettingsDescription, _super);
function WebOverlaySettingsDescription() {
var _this = _super.call(this) || this;
_this.u = null;
_this.k = null;
_this.m = null;
_this.q = false;
_this.p = false;
_this.o = 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.u;
},
set: function (a) {
this.u = a;
this.j("Target");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebOverlaySettingsDescription.prototype, "positionStrategy", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("PositionStrategy");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebOverlaySettingsDescription.prototype, "scrollStrategy", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("ScrollStrategy");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebOverlaySettingsDescription.prototype, "modal", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("Modal");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebOverlaySettingsDescription.prototype, "closeOnOutsideClick", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("CloseOnOutsideClick");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebOverlaySettingsDescription.prototype, "closeOnEscape", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("CloseOnEscape");
},
enumerable: false,
configurable: true
});
WebOverlaySettingsDescription.$t = markType(WebOverlaySettingsDescription, 'WebOverlaySettingsDescription', Description.$);
return WebOverlaySettingsDescription;
}(Description));
export { WebOverlaySettingsDescription };