igniteui-angular-inputs
Version:
Ignite UI Angular input components for building rich data visualizations for modern web apps.
54 lines (53 loc) • 1.96 kB
JavaScript
import { SelectedValueChangedEventArgs as SelectedValueChangedEventArgs_internal } from "./SelectedValueChangedEventArgs";
var IgxSelectedValueChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxSelectedValueChangedEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgxSelectedValueChangedEventArgs.prototype.createImplementation = function () {
return new SelectedValueChangedEventArgs_internal();
};
Object.defineProperty(IgxSelectedValueChangedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxSelectedValueChangedEventArgs.prototype.onImplementationCreated = function () {
};
IgxSelectedValueChangedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
Object.defineProperty(IgxSelectedValueChangedEventArgs.prototype, "oldValue", {
get: function () {
return this.i.oldValue;
},
set: function (v) {
this.i.oldValue = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxSelectedValueChangedEventArgs.prototype, "newValue", {
get: function () {
return this.i.newValue;
},
set: function (v) {
this.i.newValue = v;
},
enumerable: false,
configurable: true
});
return IgxSelectedValueChangedEventArgs;
}());
export { IgxSelectedValueChangedEventArgs };