igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
48 lines (47 loc) • 1.62 kB
JavaScript
import { GridAnimationSettings as GridAnimationSettings_internal } from "./GridAnimationSettings";
/**
* Animation settings for the grid.
*/
var IgcGridAnimationSettings = /** @class */ /*@__PURE__*/ (function () {
function IgcGridAnimationSettings() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgcGridAnimationSettings.prototype.createImplementation = function () {
return new GridAnimationSettings_internal();
};
Object.defineProperty(IgcGridAnimationSettings.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgcGridAnimationSettings.prototype.onImplementationCreated = function () {
};
IgcGridAnimationSettings.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
IgcGridAnimationSettings.prototype.findByName = function (name) {
if (this.findEphemera) {
if (name && name.indexOf("@@e:") == 0) {
return this.findEphemera(name);
}
}
return null;
};
return IgcGridAnimationSettings;
}());
export { IgcGridAnimationSettings };