igniteui-react-grids
Version:
Ignite UI React grid components.
48 lines (47 loc) • 1.75 kB
JavaScript
import { ResponsiveStateExitedEventArgs as ResponsiveStateExitedEventArgs_internal } from "./ResponsiveStateExitedEventArgs";
/**
* Information about the exited state.
*/
var IgrResponsiveStateExitedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrResponsiveStateExitedEventArgs() {
this.mounted = false;
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgrResponsiveStateExitedEventArgs.prototype.createImplementation = function () {
return new ResponsiveStateExitedEventArgs_internal();
};
Object.defineProperty(IgrResponsiveStateExitedEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrResponsiveStateExitedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrResponsiveStateExitedEventArgs.prototype.onImplementationCreated = function () {
};
IgrResponsiveStateExitedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
return IgrResponsiveStateExitedEventArgs;
}());
export { IgrResponsiveStateExitedEventArgs };