igniteui-webcomponents-inputs
Version:
Ignite UI Web Components inputs components.
37 lines (36 loc) • 1.5 kB
JavaScript
import { ButtonGroupSelectionChangedEventArgs as ButtonGroupSelectionChangedEventArgs_internal } from "./ButtonGroupSelectionChangedEventArgs";
var IgcButtonGroupSelectionChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgcButtonGroupSelectionChangedEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgcButtonGroupSelectionChangedEventArgs.prototype.createImplementation = function () {
return new ButtonGroupSelectionChangedEventArgs_internal();
};
Object.defineProperty(IgcButtonGroupSelectionChangedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgcButtonGroupSelectionChangedEventArgs.prototype.onImplementationCreated = function () {
};
IgcButtonGroupSelectionChangedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
return IgcButtonGroupSelectionChangedEventArgs;
}());
export { IgcButtonGroupSelectionChangedEventArgs };