UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

235 lines (234 loc) 6.54 kB
/* 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.o = false; this.ah = 0; this.k = false; this.ap = null; this.ai = 0; this.ag = 0; this.ao = null; this.an = null; this.am = null; this.aq = null; this.ac = 0; this.p = false; this.l = false; this.q = false; this.av = null; this.au = null; this.ad = 0; this.r = false; this.m = false; this.n = false; this.s = false; this.as = null; this.at = null; this.aw = null; this.ax = null; this.ar = null; } get_type() { return "Popup"; } get type() { return this.get_type(); } get isFocusable() { return this.o; } set isFocusable(a) { this.o = a; this.j("IsFocusable"); } get animationDuration() { return this.ah; } set animationDuration(a) { this.ah = a; this.j("AnimationDuration"); } get animationEnabled() { return this.k; } set animationEnabled(a) { this.k = a; this.j("AnimationEnabled"); } get animationType() { return this.ap; } set animationType(a) { this.ap = a; this.j("AnimationType"); } get elevation() { return this.ai; } set elevation(a) { this.ai = a; this.j("Elevation"); } get actualElevation() { return this.ag; } set actualElevation(a) { this.ag = a; this.j("ActualElevation"); } get actualUmbraShadowColor() { return this.ao; } set actualUmbraShadowColor(a) { this.ao = a; this.j("ActualUmbraShadowColor"); } get actualPenumbraShadowColor() { return this.an; } set actualPenumbraShadowColor(a) { this.an = a; this.j("ActualPenumbraShadowColor"); } get actualAmbientShadowColor() { return this.am; } set actualAmbientShadowColor(a) { this.am = a; this.j("ActualAmbientShadowColor"); } get background() { return this.aq; } set background(a) { this.aq = a; this.j("Background"); } get cornerRadius() { return this.ac; } set cornerRadius(a) { this.ac = a; this.j("CornerRadius"); } get isHitTestVisible() { return this.p; } set isHitTestVisible(a) { this.p = a; this.j("IsHitTestVisible"); } get disableHitTestDuringAnimation() { return this.l; } set disableHitTestDuringAnimation(a) { this.l = a; this.j("DisableHitTestDuringAnimation"); } get isPointerEnabled() { return this.q; } set isPointerEnabled(a) { this.q = a; this.j("IsPointerEnabled"); } get pointerPosition() { return this.av; } set pointerPosition(a) { this.av = a; this.j("PointerPosition"); } get pointerBackground() { return this.au; } set pointerBackground(a) { this.au = a; this.j("PointerBackground"); } get pointerSize() { return this.ad; } set pointerSize(a) { this.ad = a; this.j("PointerSize"); } get isShowing() { return this.r; } set isShowing(a) { this.r = a; this.j("IsShowing"); } get isClosing() { return this.m; } set isClosing(a) { this.m = a; this.j("IsClosing"); } get isFixed() { return this.n; } set isFixed(a) { this.n = a; this.j("IsFixed"); } get useTopLayer() { return this.s; } set useTopLayer(a) { this.s = a; this.j("UseTopLayer"); } get onClosedRef() { return this.as; } set onClosedRef(a) { this.as = a; this.j("OnClosedRef"); } get onPopupRef() { return this.at; } set onPopupRef(a) { this.at = a; this.j("OnPopupRef"); } get popupGotFocusRef() { return this.aw; } set popupGotFocusRef(a) { this.aw = a; this.j("PopupGotFocusRef"); } get popupLostFocusRef() { return this.ax; } set popupLostFocusRef(a) { this.ax = a; this.j("PopupLostFocusRef"); } get measuringContentSizeRef() { return this.ar; } set measuringContentSizeRef(a) { this.ar = a; this.j("MeasuringContentSizeRef"); } } PopupDescription.$t = markType(PopupDescription, 'PopupDescription', Description.$); return PopupDescription; })();