UNPKG

igniteui-react-core

Version:
48 lines (47 loc) 1.97 kB
import { DataSourcePropertiesRequestedChangedEventArgs as DataSourcePropertiesRequestedChangedEventArgs_internal } from "./DataSourcePropertiesRequestedChangedEventArgs"; /** * Provides information about a properties requested changed event. */ var IgrDataSourcePropertiesRequestedChangedEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgrDataSourcePropertiesRequestedChangedEventArgs() { this.mounted = false; this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } IgrDataSourcePropertiesRequestedChangedEventArgs.prototype.createImplementation = function () { return new DataSourcePropertiesRequestedChangedEventArgs_internal(); }; Object.defineProperty(IgrDataSourcePropertiesRequestedChangedEventArgs.prototype, "nativeElement", { get: function () { return this._implementation.nativeElement; }, enumerable: false, configurable: true }); Object.defineProperty(IgrDataSourcePropertiesRequestedChangedEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgrDataSourcePropertiesRequestedChangedEventArgs.prototype.onImplementationCreated = function () { }; IgrDataSourcePropertiesRequestedChangedEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } }; return IgrDataSourcePropertiesRequestedChangedEventArgs; }()); export { IgrDataSourcePropertiesRequestedChangedEventArgs };