igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
237 lines (236 loc) • 7.21 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 WebSliderBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebSliderBaseDescription, _super);
function WebSliderBaseDescription() {
var _this = _super.call(this) || this;
_this.y = 0;
_this.x = 0;
_this.w = 0;
_this.ac = 0;
_this.m = false;
_this.n = false;
_this.q = false;
_this.ab = 0;
_this.z = 0;
_this.aa = 0;
_this.am = null;
_this.o = false;
_this.p = false;
_this.ak = null;
_this.an = null;
_this.al = null;
_this.k = null;
return _this;
}
WebSliderBaseDescription.prototype.get_type = function () {
return "WebSliderBase";
};
Object.defineProperty(WebSliderBaseDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "min", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("Min");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "max", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("Max");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "lowerBound", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("LowerBound");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "upperBound", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.j("UpperBound");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "disabled", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("Disabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "discreteTrack", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("DiscreteTrack");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "hideTooltip", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("HideTooltip");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "step", {
get: function () {
return this.ab;
},
set: function (a) {
this.ab = a;
this.j("Step");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "primaryTicks", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.j("PrimaryTicks");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "secondaryTicks", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("SecondaryTicks");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "tickOrientation", {
get: function () {
return this.am;
},
set: function (a) {
this.am = a;
this.j("TickOrientation");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "hidePrimaryLabels", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("HidePrimaryLabels");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "hideSecondaryLabels", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("HideSecondaryLabels");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "locale", {
get: function () {
return this.ak;
},
set: function (a) {
this.ak = a;
this.j("Locale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "valueFormat", {
get: function () {
return this.an;
},
set: function (a) {
this.an = a;
this.j("ValueFormat");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "tickLabelRotation", {
get: function () {
return this.al;
},
set: function (a) {
this.al = a;
this.j("TickLabelRotation");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderBaseDescription.prototype, "valueFormatOptions", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("ValueFormatOptions");
},
enumerable: false,
configurable: true
});
WebSliderBaseDescription.$t = markType(WebSliderBaseDescription, 'WebSliderBaseDescription', Description.$);
return WebSliderBaseDescription;
}(Description));
export { WebSliderBaseDescription };