UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

58 lines (57 loc) 2.27 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 { Base, markType } from "igniteui-react-core"; import { INativeUIElementFactory_$type } from "igniteui-react-core"; import { NativeUIComponent } from "igniteui-react-core"; /** * @hidden */ var NativeUIComboFactory = /** @class */ /*@__PURE__*/ (function (_super) { __extends(NativeUIComboFactory, _super); function NativeUIComboFactory() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.c = 2; return _this; } Object.defineProperty(NativeUIComboFactory, "instance", { get: function () { if (NativeUIComboFactory.a == null) { NativeUIComboFactory.a = new NativeUIComboFactory(); } return NativeUIComboFactory.a; }, enumerable: false, configurable: true }); NativeUIComboFactory.register = function () { NativeUIComponent.as(NativeUIComboFactory.instance); }; Object.defineProperty(NativeUIComboFactory.prototype, "flavor", { get: function () { return this.c; }, enumerable: false, configurable: true }); NativeUIComboFactory.prototype.createComponent = function (a, b, c) { switch (b) { } }; NativeUIComboFactory.prototype.createComponentSync = function (a, b, c) { this.createComponent(a, b, c); }; NativeUIComboFactory.prototype.supportsComponent = function (a) { switch (a) { } return false; }; NativeUIComboFactory.$t = markType(NativeUIComboFactory, 'NativeUIComboFactory', Base.$, [INativeUIElementFactory_$type]); NativeUIComboFactory.a = null; return NativeUIComboFactory; }(Base)); export { NativeUIComboFactory };