igniteui-react-core
Version:
Ignite UI React Core.
64 lines (63 loc) • 1.92 kB
JavaScript
/**
* Provides data for double value change events.
*/
var IgrDoubleValueChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrDoubleValueChangedEventArgs() {
this.mounted = false;
}
Object.defineProperty(IgrDoubleValueChangedEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrDoubleValueChangedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrDoubleValueChangedEventArgs.prototype.onImplementationCreated = function () {
};
IgrDoubleValueChangedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgrDoubleValueChangedEventArgs.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(IgrDoubleValueChangedEventArgs.prototype, "newValue", {
/**
* Gets the new value.
*/
get: function () {
return this.i.newValue;
},
set: function (v) {
this.i.newValue = +v;
},
enumerable: false,
configurable: true
});
return IgrDoubleValueChangedEventArgs;
}());
export { IgrDoubleValueChangedEventArgs };