igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
56 lines (55 loc) • 1.89 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 { __extends } from "tslib";
import { Base, markType } from "igniteui-angular-core";
/**
*/
var PaletteEntry = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PaletteEntry, _super);
function PaletteEntry(a, b) {
var _this = _super.call(this) || this;
_this._a = null;
_this._colorInfo = null;
_this.colorInfo = a;
_this._a = b;
return _this;
}
Object.defineProperty(PaletteEntry.prototype, "colorInfo", {
/**
*/
get: function () {
return this._colorInfo;
},
set: function (a) {
this._colorInfo = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(PaletteEntry.prototype, "color", {
/**
*/
get: function () {
return this._color$i.colorString;
},
enumerable: false,
configurable: true
});
Object.defineProperty(PaletteEntry.prototype, "_color$i", {
/**
* @hidden
*/
get: function () {
return this.colorInfo._getResolvedColor1(this._a);
},
enumerable: false,
configurable: true
});
PaletteEntry.$t = markType(PaletteEntry, 'PaletteEntry');
return PaletteEntry;
}(Base));
export { PaletteEntry };