UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

163 lines (162 loc) 4.46 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let WebSliderBaseDescription = /*@__PURE__*/ (() => { class WebSliderBaseDescription extends Description { constructor() { super(); this.t = 0; this.s = 0; this.r = 0; this.x = 0; this.h = false; this.i = false; this.l = false; this.w = 0; this.u = 0; this.v = 0; this.ah = null; this.j = false; this.k = false; this.af = null; this.ai = null; this.f = null; this.ag = null; } get_type() { return "WebSliderBase"; } get type() { return this.get_type(); } get min() { return this.t; } set min(a) { this.t = a; this.e("Min"); } get max() { return this.s; } set max(a) { this.s = a; this.e("Max"); } get lowerBound() { return this.r; } set lowerBound(a) { this.r = a; this.e("LowerBound"); } get upperBound() { return this.x; } set upperBound(a) { this.x = a; this.e("UpperBound"); } get disabled() { return this.h; } set disabled(a) { this.h = a; this.e("Disabled"); } get discreteTrack() { return this.i; } set discreteTrack(a) { this.i = a; this.e("DiscreteTrack"); } get hideTooltip() { return this.l; } set hideTooltip(a) { this.l = a; this.e("HideTooltip"); } get step() { return this.w; } set step(a) { this.w = a; this.e("Step"); } get primaryTicks() { return this.u; } set primaryTicks(a) { this.u = a; this.e("PrimaryTicks"); } get secondaryTicks() { return this.v; } set secondaryTicks(a) { this.v = a; this.e("SecondaryTicks"); } get tickOrientation() { return this.ah; } set tickOrientation(a) { this.ah = a; this.e("TickOrientation"); } get hidePrimaryLabels() { return this.j; } set hidePrimaryLabels(a) { this.j = a; this.e("HidePrimaryLabels"); } get hideSecondaryLabels() { return this.k; } set hideSecondaryLabels(a) { this.k = a; this.e("HideSecondaryLabels"); } get locale() { return this.af; } set locale(a) { this.af = a; this.e("Locale"); } get valueFormat() { return this.ai; } set valueFormat(a) { this.ai = a; this.e("ValueFormat"); } get valueFormatOptions() { return this.f; } set valueFormatOptions(a) { this.f = a; this.e("ValueFormatOptions"); } get tickLabelRotation() { return this.ag; } set tickLabelRotation(a) { this.ag = a; this.e("TickLabelRotation"); } } WebSliderBaseDescription.$t = markType(WebSliderBaseDescription, 'WebSliderBaseDescription', Description.$); return WebSliderBaseDescription; })();