UNPKG

igniteui-angular-charts

Version:

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

34 lines (33 loc) 1.55 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 { SelectedItemChangedEventArgs } from "./SelectedItemChangedEventArgs"; import { markType } from "igniteui-angular-core"; /** * @hidden */ var SelectedItemChangingEventArgs = /** @class */ /*@__PURE__*/ (function (_super) { __extends(SelectedItemChangingEventArgs, _super); function SelectedItemChangingEventArgs(a, b) { var _this = _super.call(this, a, b) || this; _this._cancel = false; return _this; } Object.defineProperty(SelectedItemChangingEventArgs.prototype, "cancel", { get: function () { return this._cancel; }, set: function (a) { this._cancel = a; }, enumerable: false, configurable: true }); SelectedItemChangingEventArgs.$t = markType(SelectedItemChangingEventArgs, 'SelectedItemChangingEventArgs', SelectedItemChangedEventArgs.$); return SelectedItemChangingEventArgs; }(SelectedItemChangedEventArgs)); export { SelectedItemChangingEventArgs };