UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

53 lines (52 loc) 1.61 kB
/** * Provides data for double value change events. */ var IgxDoubleValueChangedEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgxDoubleValueChangedEventArgs() { } Object.defineProperty(IgxDoubleValueChangedEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgxDoubleValueChangedEventArgs.prototype.onImplementationCreated = function () { }; IgxDoubleValueChangedEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); }; Object.defineProperty(IgxDoubleValueChangedEventArgs.prototype, "oldValue", { /** * Gets the value before the change. */ get: function () { return this.i.oldValue; }, set: function (v) { this.i.oldValue = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgxDoubleValueChangedEventArgs.prototype, "newValue", { /** * Gets the new value. */ get: function () { return this.i.newValue; }, set: function (v) { this.i.newValue = +v; }, enumerable: false, configurable: true }); return IgxDoubleValueChangedEventArgs; }()); export { IgxDoubleValueChangedEventArgs };