igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
72 lines (71 loc) • 2.25 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 { WebSliderBaseDescription } from "./WebSliderBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebRangeSliderDescription = /*@__PURE__*/ (() => {
class WebRangeSliderDescription extends WebSliderBaseDescription {
constructor() {
super();
this.at = 0;
this.au = 0;
this.az = null;
this.a0 = null;
this.ay = null;
this.ax = null;
}
get_type() {
return "WebRangeSlider";
}
get lower() {
return this.at;
}
set lower(a) {
this.at = a;
this.j("Lower");
}
get upper() {
return this.au;
}
set upper(a) {
this.au = a;
this.j("Upper");
}
get thumbLabelLower() {
return this.az;
}
set thumbLabelLower(a) {
this.az = a;
this.j("ThumbLabelLower");
}
get thumbLabelUpper() {
return this.a0;
}
set thumbLabelUpper(a) {
this.a0 = a;
this.j("ThumbLabelUpper");
}
get inputRef() {
return this.ay;
}
set inputRef(a) {
this.ay = a;
this.j("InputRef");
}
get changeRef() {
return this.ax;
}
set changeRef(a) {
this.ax = a;
this.j("ChangeRef");
}
}
WebRangeSliderDescription.$t = markType(WebRangeSliderDescription, 'WebRangeSliderDescription', WebSliderBaseDescription.$);
return WebRangeSliderDescription;
})();