UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

91 lines (90 loc) 2.62 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 HighlightingInfoDescription = /*@__PURE__*/ (() => { class HighlightingInfoDescription extends Description { constructor() { super(); this.q = 0; this.p = 0; this.t = null; this.n = 0; this.j = false; this.i = false; this.h = false; this.f = null; } get_type() { return "HighlightingInfo"; } get type() { return this.get_type(); } get startIndex() { return this.q; } set startIndex(a) { this.q = a; this.e("StartIndex"); } get endIndex() { return this.p; } set endIndex(a) { this.p = a; this.e("EndIndex"); } get state() { return this.t; } set state(a) { this.t = a; this.e("State"); } get progress() { return this.n; } set progress(a) { this.n = a; this.e("Progress"); } get isMarker() { return this.j; } set isMarker(a) { this.j = a; this.e("IsMarker"); } get isFullRange() { return this.i; } set isFullRange(a) { this.i = a; this.e("IsFullRange"); } get isExclusive() { return this.h; } set isExclusive(a) { this.h = a; this.e("IsExclusive"); } get series() { return this.f; } set series(a) { this.f = a; this.e("Series"); } } HighlightingInfoDescription.$t = markType(HighlightingInfoDescription, 'HighlightingInfoDescription', Description.$); return HighlightingInfoDescription; })();