UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

59 lines (58 loc) 2.29 kB
import { CheckboxListIndexType_$type } from "./CheckboxListIndexType"; import { CheckboxListIndexTypeChangedEventArgs as CheckboxListIndexTypeChangedEventArgs_internal } from "./CheckboxListIndexTypeChangedEventArgs"; import { ensureEnum } from "igniteui-webcomponents-core"; var IgcCheckboxListIndexTypeChangedEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgcCheckboxListIndexTypeChangedEventArgs() { this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } IgcCheckboxListIndexTypeChangedEventArgs.prototype.createImplementation = function () { return new CheckboxListIndexTypeChangedEventArgs_internal(); }; Object.defineProperty(IgcCheckboxListIndexTypeChangedEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgcCheckboxListIndexTypeChangedEventArgs.prototype.onImplementationCreated = function () { }; IgcCheckboxListIndexTypeChangedEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } }; Object.defineProperty(IgcCheckboxListIndexTypeChangedEventArgs.prototype, "oldValue", { get: function () { return this.i.b; }, set: function (v) { this.i.b = ensureEnum(CheckboxListIndexType_$type, v); }, enumerable: false, configurable: true }); Object.defineProperty(IgcCheckboxListIndexTypeChangedEventArgs.prototype, "newValue", { get: function () { return this.i.a; }, set: function (v) { this.i.a = ensureEnum(CheckboxListIndexType_$type, v); }, enumerable: false, configurable: true }); return IgcCheckboxListIndexTypeChangedEventArgs; }()); export { IgcCheckboxListIndexTypeChangedEventArgs };