igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
91 lines (90 loc) • 2.65 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 WebDialogDescription = /*@__PURE__*/ (() => {
class WebDialogDescription extends Description {
constructor() {
super();
this.m = false;
this.k = false;
this.l = false;
this.n = false;
this.v = null;
this.u = null;
this.t = null;
this.s = null;
}
get_type() {
return "WebDialog";
}
get type() {
return this.get_type();
}
get keepOpenOnEscape() {
return this.m;
}
set keepOpenOnEscape(a) {
this.m = a;
this.j("KeepOpenOnEscape");
}
get closeOnOutsideClick() {
return this.k;
}
set closeOnOutsideClick(a) {
this.k = a;
this.j("CloseOnOutsideClick");
}
get hideDefaultAction() {
return this.l;
}
set hideDefaultAction(a) {
this.l = a;
this.j("HideDefaultAction");
}
get open() {
return this.n;
}
set open(a) {
this.n = a;
this.j("Open");
}
get title() {
return this.v;
}
set title(a) {
this.v = a;
this.j("Title");
}
get returnValue() {
return this.u;
}
set returnValue(a) {
this.u = a;
this.j("ReturnValue");
}
get closingRef() {
return this.t;
}
set closingRef(a) {
this.t = a;
this.j("ClosingRef");
}
get closedRef() {
return this.s;
}
set closedRef(a) {
this.s = a;
this.j("ClosedRef");
}
}
WebDialogDescription.$t = markType(WebDialogDescription, 'WebDialogDescription', Description.$);
return WebDialogDescription;
})();