igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
72 lines (71 loc) • 2.24 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.ao = 0;
this.ap = 0;
this.as = null;
this.at = null;
this.av = null;
this.au = null;
}
get_type() {
return "WebRangeSlider";
}
get lower() {
return this.ao;
}
set lower(a) {
this.ao = a;
this.e("Lower");
}
get upper() {
return this.ap;
}
set upper(a) {
this.ap = a;
this.e("Upper");
}
get ariaLabelLower() {
return this.as;
}
set ariaLabelLower(a) {
this.as = a;
this.e("AriaLabelLower");
}
get ariaLabelUpper() {
return this.at;
}
set ariaLabelUpper(a) {
this.at = a;
this.e("AriaLabelUpper");
}
get inputRef() {
return this.av;
}
set inputRef(a) {
this.av = a;
this.e("InputRef");
}
get changeRef() {
return this.au;
}
set changeRef(a) {
this.au = a;
this.e("ChangeRef");
}
}
WebRangeSliderDescription.$t = markType(WebRangeSliderDescription, 'WebRangeSliderDescription', WebSliderBaseDescription.$);
return WebRangeSliderDescription;
})();