igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
99 lines (98 loc) • 2.87 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 RippleDescription = /*@__PURE__*/ (() => {
class RippleDescription extends Description {
constructor() {
super();
this.u = null;
this.w = null;
this.v = null;
this.s = null;
this.t = null;
this.q = 0;
this.l = false;
this.k = false;
this.m = false;
}
get_type() {
return "Ripple";
}
get type() {
return this.get_type();
}
get eventSourceRef() {
return this.u;
}
set eventSourceRef(a) {
this.u = a;
this.j("EventSourceRef");
}
get rippleColor() {
return this.w;
}
set rippleColor(a) {
this.w = a;
this.j("RippleColor");
}
get hoverColor() {
return this.v;
}
set hoverColor(a) {
this.v = a;
this.j("HoverColor");
}
get actualHoverColor() {
return this.s;
}
set actualHoverColor(a) {
this.s = a;
this.j("ActualHoverColor");
}
get actualRippleColor() {
return this.t;
}
set actualRippleColor(a) {
this.t = a;
this.j("ActualRippleColor");
}
get rippleDuration() {
return this.q;
}
set rippleDuration(a) {
this.q = a;
this.j("RippleDuration");
}
get isDisabled() {
return this.l;
}
set isDisabled(a) {
this.l = a;
this.j("IsDisabled");
}
get isCentered() {
return this.k;
}
set isCentered(a) {
this.k = a;
this.j("IsCentered");
}
get isHoverEnabled() {
return this.m;
}
set isHoverEnabled(a) {
this.m = a;
this.j("IsHoverEnabled");
}
}
RippleDescription.$t = markType(RippleDescription, 'RippleDescription', Description.$);
return RippleDescription;
})();