igniteui-angular-inputs
Version:
Ignite UI Angular input components for building rich data visualizations for modern web apps.
34 lines (33 loc) • 1.44 kB
JavaScript
import { ButtonGroupSelectionChangedEventArgs as ButtonGroupSelectionChangedEventArgs_internal } from "./ButtonGroupSelectionChangedEventArgs";
var IgxButtonGroupSelectionChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxButtonGroupSelectionChangedEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgxButtonGroupSelectionChangedEventArgs.prototype.createImplementation = function () {
return new ButtonGroupSelectionChangedEventArgs_internal();
};
Object.defineProperty(IgxButtonGroupSelectionChangedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxButtonGroupSelectionChangedEventArgs.prototype.onImplementationCreated = function () {
};
IgxButtonGroupSelectionChangedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
return IgxButtonGroupSelectionChangedEventArgs;
}());
export { IgxButtonGroupSelectionChangedEventArgs };