igniteui-react-core
Version:
Ignite UI React Core.
58 lines (57 loc) • 2.04 kB
JavaScript
/**
* Provides information about a schema change event.
*/
var IgrDataSourceDataProviderSchemaChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrDataSourceDataProviderSchemaChangedEventArgs() {
this.mounted = false;
}
Object.defineProperty(IgrDataSourceDataProviderSchemaChangedEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrDataSourceDataProviderSchemaChangedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrDataSourceDataProviderSchemaChangedEventArgs.prototype.onImplementationCreated = function () {
};
IgrDataSourceDataProviderSchemaChangedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgrDataSourceDataProviderSchemaChangedEventArgs.prototype, "schema", {
/**
* Represents the current schema for the data provider.
*/
get: function () {
return this.i.schema;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrDataSourceDataProviderSchemaChangedEventArgs.prototype, "count", {
/**
* Represents the current full count for the data provider. May be -1 if this information is not available yet.
*/
get: function () {
return this.i.count;
},
enumerable: false,
configurable: true
});
return IgrDataSourceDataProviderSchemaChangedEventArgs;
}());
export { IgrDataSourceDataProviderSchemaChangedEventArgs };