UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

72 lines (71 loc) 2.61 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { __extends } from "tslib"; import { BaseElement } from "igniteui-react"; import { WCNativeHelper } from "igniteui-react"; import { markType } from "igniteui-react-core"; import { GridStateOptions } from "./GridStateOptions"; /** * @hidden */ var GridStateBaseDirective = /** @class */ /*@__PURE__*/ (function (_super) { __extends(GridStateBaseDirective, _super); function GridStateBaseDirective() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.b = new WCNativeHelper(); _this.d = null; return _this; } Object.defineProperty(GridStateBaseDirective.prototype, "c", { get: function () { return this.b; }, enumerable: false, configurable: true }); Object.defineProperty(GridStateBaseDirective.prototype, "nativeElement", { get: function () { return this.d; }, set: function (a) { this.d = a; this.b.o = this.d; }, enumerable: false, configurable: true }); GridStateBaseDirective.prototype.setNativeElement = function (a) { this.nativeElement = a; }; Object.defineProperty(GridStateBaseDirective.prototype, "a", { get: function () { var ret_ = this.c.m("options", function (a) { return new GridStateOptions(); }); return ret_; }, set: function (a) { var value_ = a; this.c.w("options", value_); }, enumerable: false, configurable: true }); Object.defineProperty(GridStateBaseDirective.prototype, "name", { get: function () { var ret_ = this.c.n("name"); return ret_; }, set: function (a) { var value_ = a; this.c.w("name", value_); }, enumerable: false, configurable: true }); GridStateBaseDirective.$t = markType(GridStateBaseDirective, 'GridStateBaseDirective', BaseElement.$); return GridStateBaseDirective; }(BaseElement)); export { GridStateBaseDirective };