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