igniteui-react-core
Version:
Ignite UI React Core.
58 lines (57 loc) • 1.88 kB
JavaScript
/**
* Provides information about a schema change event that has occurred.
*/
var IgrDataSourceSchemaChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrDataSourceSchemaChangedEventArgs() {
this.mounted = false;
}
Object.defineProperty(IgrDataSourceSchemaChangedEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrDataSourceSchemaChangedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrDataSourceSchemaChangedEventArgs.prototype.onImplementationCreated = function () {
};
IgrDataSourceSchemaChangedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgrDataSourceSchemaChangedEventArgs.prototype, "schema", {
/**
* Gets the new schema that has been provided.
*/
get: function () {
return this.i.schema;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrDataSourceSchemaChangedEventArgs.prototype, "count", {
/**
* Gets the current full count of items in the data source.
*/
get: function () {
return this.i.count;
},
enumerable: false,
configurable: true
});
return IgrDataSourceSchemaChangedEventArgs;
}());
export { IgrDataSourceSchemaChangedEventArgs };