igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
40 lines (39 loc) • 1.52 kB
JavaScript
import { __extends } from "tslib";
import { IgCollection } from "igniteui-react-core";
import { SyncableObservableCollection$2 } from "igniteui-react-core";
import { IndicatorDisplayType_$type } from './IndicatorDisplayType';
import { ensureEnum } from "igniteui-react-core";
var IgrIndicatorDisplayTypeCollection = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrIndicatorDisplayTypeCollection, _super);
function IgrIndicatorDisplayTypeCollection(list) {
var _this = _super.call(this) || this;
if (list) {
for (var i = 0; i < list.length; i++) {
_this.add(list[i]);
}
}
return _this;
}
IgrIndicatorDisplayTypeCollection.prototype._ensureOuter = function (item) {
return ensureEnum(IndicatorDisplayType_$type, item);
};
IgrIndicatorDisplayTypeCollection.prototype._createInnerColl = function () {
var coll = new SyncableObservableCollection$2(IndicatorDisplayType_$type, IndicatorDisplayType_$type, 0);
coll.compare = function (ext, int) {
var comp = ext;
if (comp.equals) {
return comp.equals(int);
}
return comp === int;
};
coll.createTo = function (ext) {
return ext;
};
coll.createFrom = function (int) {
return int;
};
return coll;
};
return IgrIndicatorDisplayTypeCollection;
}(IgCollection));
export { IgrIndicatorDisplayTypeCollection };