igniteui-react-inputs
Version:
Ignite UI React input components.
45 lines (44 loc) • 1.78 kB
JavaScript
import { ButtonGroupSelectionChangedEventArgs as ButtonGroupSelectionChangedEventArgs_internal } from "./ButtonGroupSelectionChangedEventArgs";
var IgrButtonGroupSelectionChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrButtonGroupSelectionChangedEventArgs() {
this.mounted = false;
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgrButtonGroupSelectionChangedEventArgs.prototype.createImplementation = function () {
return new ButtonGroupSelectionChangedEventArgs_internal();
};
Object.defineProperty(IgrButtonGroupSelectionChangedEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrButtonGroupSelectionChangedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrButtonGroupSelectionChangedEventArgs.prototype.onImplementationCreated = function () {
};
IgrButtonGroupSelectionChangedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
return IgrButtonGroupSelectionChangedEventArgs;
}());
export { IgrButtonGroupSelectionChangedEventArgs };