igniteui-react-grids
Version:
Ignite UI React grid components.
49 lines (48 loc) • 1.72 kB
JavaScript
var IgrMultiColumnComboBoxValueChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrMultiColumnComboBoxValueChangedEventArgs() {
this.mounted = false;
}
Object.defineProperty(IgrMultiColumnComboBoxValueChangedEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrMultiColumnComboBoxValueChangedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrMultiColumnComboBoxValueChangedEventArgs.prototype.onImplementationCreated = function () {
};
IgrMultiColumnComboBoxValueChangedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgrMultiColumnComboBoxValueChangedEventArgs.prototype, "oldValue", {
get: function () {
return this.i.oldValue;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrMultiColumnComboBoxValueChangedEventArgs.prototype, "newValue", {
get: function () {
return this.i.newValue;
},
enumerable: false,
configurable: true
});
return IgrMultiColumnComboBoxValueChangedEventArgs;
}());
export { IgrMultiColumnComboBoxValueChangedEventArgs };