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