igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
75 lines (74 loc) • 2.3 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 MultiSliderTrackThumbRangeDescription = /*@__PURE__*/ (() => {
class MultiSliderTrackThumbRangeDescription extends Description {
constructor() {
super();
this.q = 0;
this.r = 0;
this.p = 0;
this.o = 0;
this.l = null;
this.k = null;
}
get_type() {
return "MultiSliderTrackThumbRange";
}
get type() {
return this.get_type();
}
get position() {
return this.q;
}
set position(a) {
this.q = a;
this.j("Position");
}
get width() {
return this.r;
}
set width(a) {
this.r = a;
this.j("Width");
}
get minWidth() {
return this.p;
}
set minWidth(a) {
this.p = a;
this.j("MinWidth");
}
get maxWidth() {
return this.o;
}
set maxWidth(a) {
this.o = a;
this.j("MaxWidth");
}
get lowerThumb() {
return this.l;
}
set lowerThumb(a) {
this.l = a;
this.j("LowerThumb");
}
get higherThumb() {
return this.k;
}
set higherThumb(a) {
this.k = a;
this.j("HigherThumb");
}
}
MultiSliderTrackThumbRangeDescription.$t = markType(MultiSliderTrackThumbRangeDescription, 'MultiSliderTrackThumbRangeDescription', Description.$);
return MultiSliderTrackThumbRangeDescription;
})();