igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
56 lines (55 loc) • 1.8 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 WebSliderDescription = /*@__PURE__*/ (() => {
class WebSliderDescription extends WebSliderBaseDescription {
constructor() {
super();
this.ao = 0;
this.aq = null;
this.as = null;
this.ar = null;
}
get_type() {
return "WebSlider";
}
get value() {
return this.ao;
}
set value(a) {
this.ao = a;
this.e("Value");
}
get ariaLabel() {
return this.aq;
}
set ariaLabel(a) {
this.aq = a;
this.e("AriaLabel");
}
get inputRef() {
return this.as;
}
set inputRef(a) {
this.as = a;
this.e("InputRef");
}
get changeRef() {
return this.ar;
}
set changeRef(a) {
this.ar = a;
this.e("ChangeRef");
}
}
WebSliderDescription.$t = markType(WebSliderDescription, 'WebSliderDescription', WebSliderBaseDescription.$);
return WebSliderDescription;
})();