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