igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
75 lines (74 loc) • 2.33 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let WebOverlaySettingsDescription = /*@__PURE__*/ (() => {
class WebOverlaySettingsDescription extends Description {
constructor() {
super();
this.u = null;
this.k = null;
this.m = null;
this.q = false;
this.p = false;
this.o = false;
}
get_type() {
return "WebOverlaySettings";
}
get type() {
return this.get_type();
}
get target() {
return this.u;
}
set target(a) {
this.u = a;
this.j("Target");
}
get positionStrategy() {
return this.k;
}
set positionStrategy(a) {
this.k = a;
this.j("PositionStrategy");
}
get scrollStrategy() {
return this.m;
}
set scrollStrategy(a) {
this.m = a;
this.j("ScrollStrategy");
}
get modal() {
return this.q;
}
set modal(a) {
this.q = a;
this.j("Modal");
}
get closeOnOutsideClick() {
return this.p;
}
set closeOnOutsideClick(a) {
this.p = a;
this.j("CloseOnOutsideClick");
}
get closeOnEscape() {
return this.o;
}
set closeOnEscape(a) {
this.o = a;
this.j("CloseOnEscape");
}
}
WebOverlaySettingsDescription.$t = markType(WebOverlaySettingsDescription, 'WebOverlaySettingsDescription', Description.$);
return WebOverlaySettingsDescription;
})();