igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
107 lines (106 loc) • 3.15 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 PopupDescription = /*@__PURE__*/ (() => {
class PopupDescription extends Description {
constructor() {
super();
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;
}
get_type() {
return "Popup";
}
get type() {
return this.get_type();
}
get animationDuration() {
return this.i;
}
set animationDuration(a) {
this.i = a;
this.e("AnimationDuration");
}
get animationEnabled() {
return this.f;
}
set animationEnabled(a) {
this.f = a;
this.e("AnimationEnabled");
}
get elevation() {
return this.j;
}
set elevation(a) {
this.j = a;
this.e("Elevation");
}
get actualElevation() {
return this.h;
}
set actualElevation(a) {
this.h = a;
this.e("ActualElevation");
}
get actualUmbraShadowColor() {
return this.p;
}
set actualUmbraShadowColor(a) {
this.p = a;
this.e("ActualUmbraShadowColor");
}
get actualPenumbraShadowColor() {
return this.o;
}
set actualPenumbraShadowColor(a) {
this.o = a;
this.e("ActualPenumbraShadowColor");
}
get actualAmbientShadowColor() {
return this.n;
}
set actualAmbientShadowColor(a) {
this.n = a;
this.e("ActualAmbientShadowColor");
}
get background() {
return this.q;
}
set background(a) {
this.q = a;
this.e("Background");
}
get onClosedRef() {
return this.r;
}
set onClosedRef(a) {
this.r = a;
this.e("OnClosedRef");
}
get onPopupRef() {
return this.s;
}
set onPopupRef(a) {
this.s = a;
this.e("OnPopupRef");
}
}
PopupDescription.$t = markType(PopupDescription, 'PopupDescription', Description.$);
return PopupDescription;
})();