UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

99 lines (98 loc) 2.87 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 RippleDescription = /*@__PURE__*/ (() => { class RippleDescription extends Description { constructor() { super(); this.p = null; this.r = null; this.q = null; this.n = null; this.o = null; this.l = 0; this.g = false; this.f = false; this.h = false; } get_type() { return "Ripple"; } get type() { return this.get_type(); } get eventSourceRef() { return this.p; } set eventSourceRef(a) { this.p = a; this.e("EventSourceRef"); } get rippleColor() { return this.r; } set rippleColor(a) { this.r = a; this.e("RippleColor"); } get hoverColor() { return this.q; } set hoverColor(a) { this.q = a; this.e("HoverColor"); } get actualHoverColor() { return this.n; } set actualHoverColor(a) { this.n = a; this.e("ActualHoverColor"); } get actualRippleColor() { return this.o; } set actualRippleColor(a) { this.o = a; this.e("ActualRippleColor"); } get rippleDuration() { return this.l; } set rippleDuration(a) { this.l = a; this.e("RippleDuration"); } get isDisabled() { return this.g; } set isDisabled(a) { this.g = a; this.e("IsDisabled"); } get isCentered() { return this.f; } set isCentered(a) { this.f = a; this.e("IsCentered"); } get isHoverEnabled() { return this.h; } set isHoverEnabled(a) { this.h = a; this.e("IsHoverEnabled"); } } RippleDescription.$t = markType(RippleDescription, 'RippleDescription', Description.$); return RippleDescription; })();