igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
153 lines (152 loc) • 4.74 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 PopupDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PopupDescription, _super);
function PopupDescription() {
var _this = _super.call(this) || this;
_this.i = 0;
_this.f = false;
_this.j = 0;
_this.h = 0;
_this.p = null;
_this.o = null;
_this.n = null;
_this.q = null;
_this.r = null;
_this.s = null;
return _this;
}
PopupDescription.prototype.get_type = function () {
return "Popup";
};
Object.defineProperty(PopupDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(PopupDescription.prototype, "animationDuration", {
get: function () {
return this.i;
},
set: function (a) {
this.i = a;
this.e("AnimationDuration");
},
enumerable: false,
configurable: true
});
Object.defineProperty(PopupDescription.prototype, "animationEnabled", {
get: function () {
return this.f;
},
set: function (a) {
this.f = a;
this.e("AnimationEnabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(PopupDescription.prototype, "elevation", {
get: function () {
return this.j;
},
set: function (a) {
this.j = a;
this.e("Elevation");
},
enumerable: false,
configurable: true
});
Object.defineProperty(PopupDescription.prototype, "actualElevation", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
this.e("ActualElevation");
},
enumerable: false,
configurable: true
});
Object.defineProperty(PopupDescription.prototype, "actualUmbraShadowColor", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.e("ActualUmbraShadowColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(PopupDescription.prototype, "actualPenumbraShadowColor", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.e("ActualPenumbraShadowColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(PopupDescription.prototype, "actualAmbientShadowColor", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.e("ActualAmbientShadowColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(PopupDescription.prototype, "background", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.e("Background");
},
enumerable: false,
configurable: true
});
Object.defineProperty(PopupDescription.prototype, "onClosedRef", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.e("OnClosedRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(PopupDescription.prototype, "onPopupRef", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.e("OnPopupRef");
},
enumerable: false,
configurable: true
});
PopupDescription.$t = markType(PopupDescription, 'PopupDescription', Description.$);
return PopupDescription;
}(Description));
export { PopupDescription };