igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
48 lines (47 loc) • 1.82 kB
JavaScript
import { SelectAllCheckboxChangedEventArgs as SelectAllCheckboxChangedEventArgs_internal } from "./SelectAllCheckboxChangedEventArgs";
import { ensureBool } from "igniteui-webcomponents-core";
var IgcSelectAllCheckboxChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgcSelectAllCheckboxChangedEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgcSelectAllCheckboxChangedEventArgs.prototype.createImplementation = function () {
return new SelectAllCheckboxChangedEventArgs_internal();
};
Object.defineProperty(IgcSelectAllCheckboxChangedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgcSelectAllCheckboxChangedEventArgs.prototype.onImplementationCreated = function () {
};
IgcSelectAllCheckboxChangedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgcSelectAllCheckboxChangedEventArgs.prototype, "isChecked", {
get: function () {
return this.i.a;
},
set: function (v) {
this.i.a = ensureBool(v);
},
enumerable: false,
configurable: true
});
return IgcSelectAllCheckboxChangedEventArgs;
}());
export { IgcSelectAllCheckboxChangedEventArgs };