igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
163 lines (162 loc) • 4.47 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let WebSliderBaseDescription = /*@__PURE__*/ (() => {
class WebSliderBaseDescription extends Description {
constructor() {
super();
this.y = 0;
this.x = 0;
this.w = 0;
this.ac = 0;
this.m = false;
this.n = false;
this.q = false;
this.ab = 0;
this.z = 0;
this.aa = 0;
this.am = null;
this.o = false;
this.p = false;
this.ak = null;
this.an = null;
this.al = null;
this.k = null;
}
get_type() {
return "WebSliderBase";
}
get type() {
return this.get_type();
}
get min() {
return this.y;
}
set min(a) {
this.y = a;
this.j("Min");
}
get max() {
return this.x;
}
set max(a) {
this.x = a;
this.j("Max");
}
get lowerBound() {
return this.w;
}
set lowerBound(a) {
this.w = a;
this.j("LowerBound");
}
get upperBound() {
return this.ac;
}
set upperBound(a) {
this.ac = a;
this.j("UpperBound");
}
get disabled() {
return this.m;
}
set disabled(a) {
this.m = a;
this.j("Disabled");
}
get discreteTrack() {
return this.n;
}
set discreteTrack(a) {
this.n = a;
this.j("DiscreteTrack");
}
get hideTooltip() {
return this.q;
}
set hideTooltip(a) {
this.q = a;
this.j("HideTooltip");
}
get step() {
return this.ab;
}
set step(a) {
this.ab = a;
this.j("Step");
}
get primaryTicks() {
return this.z;
}
set primaryTicks(a) {
this.z = a;
this.j("PrimaryTicks");
}
get secondaryTicks() {
return this.aa;
}
set secondaryTicks(a) {
this.aa = a;
this.j("SecondaryTicks");
}
get tickOrientation() {
return this.am;
}
set tickOrientation(a) {
this.am = a;
this.j("TickOrientation");
}
get hidePrimaryLabels() {
return this.o;
}
set hidePrimaryLabels(a) {
this.o = a;
this.j("HidePrimaryLabels");
}
get hideSecondaryLabels() {
return this.p;
}
set hideSecondaryLabels(a) {
this.p = a;
this.j("HideSecondaryLabels");
}
get locale() {
return this.ak;
}
set locale(a) {
this.ak = a;
this.j("Locale");
}
get valueFormat() {
return this.an;
}
set valueFormat(a) {
this.an = a;
this.j("ValueFormat");
}
get tickLabelRotation() {
return this.al;
}
set tickLabelRotation(a) {
this.al = a;
this.j("TickLabelRotation");
}
get valueFormatOptions() {
return this.k;
}
set valueFormatOptions(a) {
this.k = a;
this.j("ValueFormatOptions");
}
}
WebSliderBaseDescription.$t = markType(WebSliderBaseDescription, 'WebSliderBaseDescription', Description.$);
return WebSliderBaseDescription;
})();