UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

75 lines (74 loc) 2.17 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 RingDescription = /*@__PURE__*/ (() => { class RingDescription extends Description { constructor() { super(); this.u = 0; this.q = 0; this.o = null; this.k = null; this.m = null; this.r = 0; } get_type() { return "Ring"; } get type() { return this.get_type(); } get index() { return this.u; } set index(a) { this.u = a; this.j("Index"); } get innerExtend() { return this.q; } set innerExtend(a) { this.q = a; this.j("InnerExtend"); } get controlSize() { return this.o; } set controlSize(a) { this.o = a; this.j("ControlSize"); } get center() { return this.k; } set center(a) { this.k = a; this.j("Center"); } get ringSeries() { return this.m; } set ringSeries(a) { this.m = a; this.j("RingSeries"); } get ringBreadth() { return this.r; } set ringBreadth(a) { this.r = a; this.j("RingBreadth"); } } RingDescription.$t = markType(RingDescription, 'RingDescription', Description.$); return RingDescription; })();