igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
80 lines (79 loc) • 2.23 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 { NativeUIComponent } from "./NativeUIComponent";
import { markType } from "./type";
/**
* @hidden
*/
export let NativeUISlider = /*@__PURE__*/ (() => {
class NativeUISlider extends NativeUIComponent {
constructor() {
super(...arguments);
this.at = null;
this.au = null;
}
get_c() {
return 5;
}
get a0() {
let a = this.o(2);
return a;
}
set a0(a) {
this.af(2, a);
}
get ay() {
let a = this.o(10);
return a;
}
set ay(a) {
this.af(10, a);
}
get ax() {
let a = this.o(11);
return a;
}
set ax(a) {
this.af(11, a);
}
get az() {
let a = this.o(12);
return a;
}
set az(a) {
this.af(12, a);
}
get av() {
return this.at;
}
set av(a) {
let b = this.at;
this.at = a;
if (this.at != null) {
this.x(4, this.at);
}
else {
this.ad(4, b);
}
}
get aw() {
return this.au;
}
set aw(a) {
let b = this.au;
this.au = a;
if (this.au != null) {
this.x(0, this.au);
}
else {
this.ad(0, b);
}
}
}
NativeUISlider.$t = markType(NativeUISlider, 'NativeUISlider', NativeUIComponent.$);
return NativeUISlider;
})();