igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
59 lines (58 loc) • 1.9 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 MultiSliderThumbDescription = /*@__PURE__*/ (() => {
class MultiSliderThumbDescription extends Description {
constructor() {
super();
this.k = 0;
this.n = null;
this.o = null;
this.m = null;
}
get_type() {
return "MultiSliderThumb";
}
get type() {
return this.get_type();
}
get value() {
return this.k;
}
set value(a) {
this.k = a;
this.j("Value");
}
get rangePosition() {
return this.n;
}
set rangePosition(a) {
this.n = a;
this.j("RangePosition");
}
get rangeRef() {
return this.o;
}
set rangeRef(a) {
this.o = a;
this.j("RangeRef");
}
get propertyUpdatedRef() {
return this.m;
}
set propertyUpdatedRef(a) {
this.m = a;
this.j("PropertyUpdatedRef");
}
}
MultiSliderThumbDescription.$t = markType(MultiSliderThumbDescription, 'MultiSliderThumbDescription', Description.$);
return MultiSliderThumbDescription;
})();