igniteui-react-core
Version:
Ignite UI React Core.
45 lines (44 loc) • 1.75 kB
JavaScript
import { PopupMeasuringContentSizeEventArgs as PopupMeasuringContentSizeEventArgs_internal } from "./PopupMeasuringContentSizeEventArgs";
var IgrPopupMeasuringContentSizeEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrPopupMeasuringContentSizeEventArgs() {
this.mounted = false;
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgrPopupMeasuringContentSizeEventArgs.prototype.createImplementation = function () {
return new PopupMeasuringContentSizeEventArgs_internal();
};
Object.defineProperty(IgrPopupMeasuringContentSizeEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrPopupMeasuringContentSizeEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrPopupMeasuringContentSizeEventArgs.prototype.onImplementationCreated = function () {
};
IgrPopupMeasuringContentSizeEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
return IgrPopupMeasuringContentSizeEventArgs;
}());
export { IgrPopupMeasuringContentSizeEventArgs };