igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
58 lines (57 loc) • 2.22 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 { EventArgs, markType } from "igniteui-angular-core";
/**
* @hidden
*/
var SelectedItemsChangedEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(SelectedItemsChangedEventArgs, _super);
function SelectedItemsChangedEventArgs(a, b, c) {
var _this = _super.call(this) || this;
_this._oldItems = null;
_this._newItems = null;
_this._currentItems = null;
_this.oldItems = a;
_this.newItems = b;
_this.currentItems = c;
return _this;
}
Object.defineProperty(SelectedItemsChangedEventArgs.prototype, "oldItems", {
get: function () {
return this._oldItems;
},
set: function (a) {
this._oldItems = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(SelectedItemsChangedEventArgs.prototype, "newItems", {
get: function () {
return this._newItems;
},
set: function (a) {
this._newItems = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(SelectedItemsChangedEventArgs.prototype, "currentItems", {
get: function () {
return this._currentItems;
},
set: function (a) {
this._currentItems = a;
},
enumerable: false,
configurable: true
});
SelectedItemsChangedEventArgs.$t = markType(SelectedItemsChangedEventArgs, 'SelectedItemsChangedEventArgs', EventArgs.$);
return SelectedItemsChangedEventArgs;
}(EventArgs));
export { SelectedItemsChangedEventArgs };