igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
129 lines (128 loc) • 4.07 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 WebDialogDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebDialogDescription, _super);
function WebDialogDescription() {
var _this = _super.call(this) || this;
_this.m = false;
_this.k = false;
_this.l = false;
_this.n = false;
_this.v = null;
_this.u = null;
_this.t = null;
_this.s = null;
return _this;
}
WebDialogDescription.prototype.get_type = function () {
return "WebDialog";
};
Object.defineProperty(WebDialogDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDialogDescription.prototype, "keepOpenOnEscape", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("KeepOpenOnEscape");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDialogDescription.prototype, "closeOnOutsideClick", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("CloseOnOutsideClick");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDialogDescription.prototype, "hideDefaultAction", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("HideDefaultAction");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDialogDescription.prototype, "open", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("Open");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDialogDescription.prototype, "title", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("Title");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDialogDescription.prototype, "returnValue", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("ReturnValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDialogDescription.prototype, "closingRef", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("ClosingRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDialogDescription.prototype, "closedRef", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("ClosedRef");
},
enumerable: false,
configurable: true
});
WebDialogDescription.$t = markType(WebDialogDescription, 'WebDialogDescription', Description.$);
return WebDialogDescription;
}(Description));
export { WebDialogDescription };