igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
41 lines (40 loc) • 1.44 kB
JavaScript
var IgcMultiColumnComboBoxValueChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgcMultiColumnComboBoxValueChangedEventArgs() {
}
Object.defineProperty(IgcMultiColumnComboBoxValueChangedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgcMultiColumnComboBoxValueChangedEventArgs.prototype.onImplementationCreated = function () {
};
IgcMultiColumnComboBoxValueChangedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgcMultiColumnComboBoxValueChangedEventArgs.prototype, "oldValue", {
get: function () {
return this.i.oldValue;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgcMultiColumnComboBoxValueChangedEventArgs.prototype, "newValue", {
get: function () {
return this.i.newValue;
},
enumerable: false,
configurable: true
});
return IgcMultiColumnComboBoxValueChangedEventArgs;
}());
export { IgcMultiColumnComboBoxValueChangedEventArgs };