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