igniteui-react-grids
Version:
Ignite UI React grid components.
69 lines (68 loc) • 2.51 kB
JavaScript
import { ToggleViewCancelableEventArgsDetail as ToggleViewCancelableEventArgsDetail_internal } from "./ToggleViewCancelableEventArgsDetail";
var IgrToggleViewCancelableEventArgsDetail = /** @class */ /*@__PURE__*/ (function () {
function IgrToggleViewCancelableEventArgsDetail() {
this.mounted = false;
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgrToggleViewCancelableEventArgsDetail.prototype.createImplementation = function () {
return new ToggleViewCancelableEventArgsDetail_internal();
};
Object.defineProperty(IgrToggleViewCancelableEventArgsDetail.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrToggleViewCancelableEventArgsDetail.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrToggleViewCancelableEventArgsDetail.prototype.onImplementationCreated = function () {
};
IgrToggleViewCancelableEventArgsDetail.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgrToggleViewCancelableEventArgsDetail.prototype, "id", {
/**
* Id of the toggle view
*/
get: function () {
return this.i.e;
},
set: function (v) {
this.i.e = v;
},
enumerable: false,
configurable: true
});
IgrToggleViewCancelableEventArgsDetail.prototype.findByName = function (name) {
if (this.findEphemera) {
if (name && name.indexOf("@@e:") == 0) {
return this.findEphemera(name);
}
}
return null;
};
IgrToggleViewCancelableEventArgsDetail.prototype.setNativeElement = function (element) {
this.i.setNativeElement(element);
};
return IgrToggleViewCancelableEventArgsDetail;
}());
export { IgrToggleViewCancelableEventArgsDetail };