igniteui-react-core
Version:
Ignite UI React Core.
72 lines (71 loc) • 2.12 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 {
get_type() {
return "WebSlider";
}
constructor() {
super();
this.as = 0;
this.au = null;
this.ay = null;
this.aq = false;
this.ax = null;
this.aw = null;
}
get value() {
return this.as;
}
set value(a) {
this.as = a;
this.g("Value");
}
get defaultValue() {
return this.au;
}
set defaultValue(a) {
this.au = a;
this.g("DefaultValue");
}
get name() {
return this.ay;
}
set name(a) {
this.ay = a;
this.g("Name");
}
get invalid() {
return this.aq;
}
set invalid(a) {
this.aq = a;
this.g("Invalid");
}
get inputRef() {
return this.ax;
}
set inputRef(a) {
this.ax = a;
this.g("InputRef");
}
get changeRef() {
return this.aw;
}
set changeRef(a) {
this.aw = a;
this.g("ChangeRef");
}
}
WebSliderDescription.$t = /*@__PURE__*/ markType(WebSliderDescription, 'WebSliderDescription', WebSliderBaseDescription.$);
return WebSliderDescription;
})();