UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

105 lines (104 loc) 3.63 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 { __extends } from "tslib"; import { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var MultiSliderTrackThumbRangeDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(MultiSliderTrackThumbRangeDescription, _super); function MultiSliderTrackThumbRangeDescription() { var _this = _super.call(this) || this; _this.q = 0; _this.r = 0; _this.p = 0; _this.o = 0; _this.l = null; _this.k = null; return _this; } MultiSliderTrackThumbRangeDescription.prototype.get_type = function () { return "MultiSliderTrackThumbRange"; }; Object.defineProperty(MultiSliderTrackThumbRangeDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(MultiSliderTrackThumbRangeDescription.prototype, "position", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("Position"); }, enumerable: false, configurable: true }); Object.defineProperty(MultiSliderTrackThumbRangeDescription.prototype, "width", { get: function () { return this.r; }, set: function (a) { this.r = a; this.j("Width"); }, enumerable: false, configurable: true }); Object.defineProperty(MultiSliderTrackThumbRangeDescription.prototype, "minWidth", { get: function () { return this.p; }, set: function (a) { this.p = a; this.j("MinWidth"); }, enumerable: false, configurable: true }); Object.defineProperty(MultiSliderTrackThumbRangeDescription.prototype, "maxWidth", { get: function () { return this.o; }, set: function (a) { this.o = a; this.j("MaxWidth"); }, enumerable: false, configurable: true }); Object.defineProperty(MultiSliderTrackThumbRangeDescription.prototype, "lowerThumb", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("LowerThumb"); }, enumerable: false, configurable: true }); Object.defineProperty(MultiSliderTrackThumbRangeDescription.prototype, "higherThumb", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("HigherThumb"); }, enumerable: false, configurable: true }); MultiSliderTrackThumbRangeDescription.$t = markType(MultiSliderTrackThumbRangeDescription, 'MultiSliderTrackThumbRangeDescription', Description.$); return MultiSliderTrackThumbRangeDescription; }(Description)); export { MultiSliderTrackThumbRangeDescription };