UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

64 lines (63 loc) 2 kB
/* 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.av = 0; this.ax = null; this.at = false; this.a0 = null; this.az = null; } get_type() { return "WebSlider"; } get value() { return this.av; } set value(a) { this.av = a; this.j("Value"); } get defaultValue() { return this.ax; } set defaultValue(a) { this.ax = a; this.j("DefaultValue"); } get invalid() { return this.at; } set invalid(a) { this.at = a; this.j("Invalid"); } get inputRef() { return this.a0; } set inputRef(a) { this.a0 = a; this.j("InputRef"); } get changeRef() { return this.az; } set changeRef(a) { this.az = a; this.j("ChangeRef"); } } WebSliderDescription.$t = markType(WebSliderDescription, 'WebSliderDescription', WebSliderBaseDescription.$); return WebSliderDescription; })();