UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

46 lines (45 loc) 1.81 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 { __extends } from "tslib"; import { EventArgs, markType } from "igniteui-angular-core"; /** * @hidden */ var SelectedItemChangedEventArgs = /** @class */ /*@__PURE__*/ (function (_super) { __extends(SelectedItemChangedEventArgs, _super); function SelectedItemChangedEventArgs(a, b) { var _this = _super.call(this) || this; _this._oldItem = null; _this._newItem = null; _this.oldItem = a; _this.newItem = b; return _this; } Object.defineProperty(SelectedItemChangedEventArgs.prototype, "oldItem", { get: function () { return this._oldItem; }, set: function (a) { this._oldItem = a; }, enumerable: false, configurable: true }); Object.defineProperty(SelectedItemChangedEventArgs.prototype, "newItem", { get: function () { return this._newItem; }, set: function (a) { this._newItem = a; }, enumerable: false, configurable: true }); SelectedItemChangedEventArgs.$t = markType(SelectedItemChangedEventArgs, 'SelectedItemChangedEventArgs', EventArgs.$); return SelectedItemChangedEventArgs; }(EventArgs)); export { SelectedItemChangedEventArgs };