igniteui-angular-inputs
Version:
Ignite UI Angular input components for building rich data visualizations for modern web apps.
36 lines (35 loc) • 1.4 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 { Base, markType } from "igniteui-angular-core";
import { StringBuilder } from "igniteui-angular-core";
/**
* @hidden
*/
export class RippleVisualModelExport extends Base {
constructor() {
super(...arguments);
this.a = null;
this.b = null;
this.f = 0;
this.d = false;
this.c = false;
this.e = false;
}
static { this.$t = markType(RippleVisualModelExport, 'RippleVisualModelExport'); }
g() {
let a = new StringBuilder(0);
a.m("{");
a.m("ActualHoverColor : " + this.a.serialize() + ", ");
a.m("ActualRippleColor : " + this.b.serialize() + ", ");
a.m("RippleDuration : " + this.f + ", ");
a.m("IsDisabled : " + this.d + ", ");
a.m("IsCentered : " + this.c + ", ");
a.m("IsHoverEnabled : " + this.e + ", ");
a.m("}");
return a.toString();
}
}