igniteui-webcomponents-inputs
Version:
Ignite UI Web Components inputs components.
57 lines (56 loc) • 2 kB
JavaScript
import { SelectedValueChangedEventArgs as SelectedValueChangedEventArgs_internal } from "./SelectedValueChangedEventArgs";
var IgcSelectedValueChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgcSelectedValueChangedEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgcSelectedValueChangedEventArgs.prototype.createImplementation = function () {
return new SelectedValueChangedEventArgs_internal();
};
Object.defineProperty(IgcSelectedValueChangedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgcSelectedValueChangedEventArgs.prototype.onImplementationCreated = function () {
};
IgcSelectedValueChangedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgcSelectedValueChangedEventArgs.prototype, "oldValue", {
get: function () {
return this.i.oldValue;
},
set: function (v) {
this.i.oldValue = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgcSelectedValueChangedEventArgs.prototype, "newValue", {
get: function () {
return this.i.newValue;
},
set: function (v) {
this.i.newValue = v;
},
enumerable: false,
configurable: true
});
return IgcSelectedValueChangedEventArgs;
}());
export { IgcSelectedValueChangedEventArgs };