igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
141 lines (140 loc) • 4.37 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 { __extends } from "tslib";
import { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var RippleDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(RippleDescription, _super);
function RippleDescription() {
var _this = _super.call(this) || this;
_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;
return _this;
}
RippleDescription.prototype.get_type = function () {
return "Ripple";
};
Object.defineProperty(RippleDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(RippleDescription.prototype, "eventSourceRef", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("EventSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RippleDescription.prototype, "rippleColor", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("RippleColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RippleDescription.prototype, "hoverColor", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("HoverColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RippleDescription.prototype, "actualHoverColor", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("ActualHoverColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RippleDescription.prototype, "actualRippleColor", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("ActualRippleColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RippleDescription.prototype, "rippleDuration", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("RippleDuration");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RippleDescription.prototype, "isDisabled", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("IsDisabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RippleDescription.prototype, "isCentered", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("IsCentered");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RippleDescription.prototype, "isHoverEnabled", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("IsHoverEnabled");
},
enumerable: false,
configurable: true
});
RippleDescription.$t = markType(RippleDescription, 'RippleDescription', Description.$);
return RippleDescription;
}(Description));
export { RippleDescription };