igniteui-react-grids
Version: 
Ignite UI React grid components.
67 lines (66 loc) • 2.57 kB
JavaScript
import { CheckboxListIndexType_$type } from "./CheckboxListIndexType";
import { CheckboxListIndexTypeChangedEventArgs as CheckboxListIndexTypeChangedEventArgs_internal } from "./CheckboxListIndexTypeChangedEventArgs";
import { ensureEnum } from "igniteui-react-core";
var IgrCheckboxListIndexTypeChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
    function IgrCheckboxListIndexTypeChangedEventArgs() {
        this.mounted = false;
        this._implementation = this.createImplementation();
        this._implementation.externalObject = this;
        this.onImplementationCreated();
        if (this._initializeAdapters) {
            this._initializeAdapters();
        }
    }
    IgrCheckboxListIndexTypeChangedEventArgs.prototype.createImplementation = function () {
        return new CheckboxListIndexTypeChangedEventArgs_internal();
    };
    Object.defineProperty(IgrCheckboxListIndexTypeChangedEventArgs.prototype, "nativeElement", {
        get: function () {
            return this._implementation.nativeElement;
        },
        enumerable: false,
        configurable: true
    });
    Object.defineProperty(IgrCheckboxListIndexTypeChangedEventArgs.prototype, "i", {
        /**
         * @hidden
         */
        get: function () {
            return this._implementation;
        },
        enumerable: false,
        configurable: true
    });
    IgrCheckboxListIndexTypeChangedEventArgs.prototype.onImplementationCreated = function () {
    };
    IgrCheckboxListIndexTypeChangedEventArgs.prototype._provideImplementation = function (i) {
        this._implementation = i;
        this._implementation.externalObject = this;
        this.onImplementationCreated();
        if (this._initializeAdapters) {
            this._initializeAdapters();
        }
    };
    Object.defineProperty(IgrCheckboxListIndexTypeChangedEventArgs.prototype, "oldValue", {
        get: function () {
            return this.i.b;
        },
        set: function (v) {
            this.i.b = ensureEnum(CheckboxListIndexType_$type, v);
        },
        enumerable: false,
        configurable: true
    });
    Object.defineProperty(IgrCheckboxListIndexTypeChangedEventArgs.prototype, "newValue", {
        get: function () {
            return this.i.a;
        },
        set: function (v) {
            this.i.a = ensureEnum(CheckboxListIndexType_$type, v);
        },
        enumerable: false,
        configurable: true
    });
    return IgrCheckboxListIndexTypeChangedEventArgs;
}());
export { IgrCheckboxListIndexTypeChangedEventArgs };