UNPKG

igniteui-angular-spreadsheet

Version:

Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.

42 lines (41 loc) 1.37 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 { Base, markType } from "igniteui-angular-core"; /** */ export let PaletteEntry = /*@__PURE__*/ (() => { class PaletteEntry extends Base { constructor(a, b) { super(); this._a = null; this._colorInfo = null; this.colorInfo = a; this._a = b; } /** */ get colorInfo() { return this._colorInfo; } set colorInfo(a) { this._colorInfo = a; } /** */ get color() { return this._color$i.colorString; } /** * @hidden */ get _color$i() { return this.colorInfo._getResolvedColor1(this._a); } } PaletteEntry.$t = markType(PaletteEntry, 'PaletteEntry'); return PaletteEntry; })();