UNPKG

igniteui-react-core

Version:
112 lines (111 loc) 4 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 { ToolActionInfoDescription } from "./ToolActionInfoDescription"; import { markType } from "./type"; /** * @hidden */ var ToolActionFieldSelectorInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolActionFieldSelectorInfoDescription, _super); function ToolActionFieldSelectorInfoDescription() { var _this = _super.call(this) || this; _this.bn = null; _this.bo = null; _this.bi = false; _this.bh = false; _this.bm = null; _this.bp = null; _this.bq = null; return _this; } ToolActionFieldSelectorInfoDescription.prototype.get_type = function () { return "ToolActionFieldSelectorInfo"; }; Object.defineProperty(ToolActionFieldSelectorInfoDescription.prototype, "dataSourceRef", { get: function () { return this.bn; }, set: function (a) { this.bn = a; this.g("DataSourceRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionFieldSelectorInfoDescription.prototype, "fieldType", { get: function () { return this.bo; }, set: function (a) { this.bo = a; this.g("FieldType"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionFieldSelectorInfoDescription.prototype, "updateDataSource", { get: function () { return this.bi; }, set: function (a) { this.bi = a; this.g("UpdateDataSource"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionFieldSelectorInfoDescription.prototype, "singleSelection", { get: function () { return this.bh; }, set: function (a) { this.bh = a; this.g("SingleSelection"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionFieldSelectorInfoDescription.prototype, "aggregationsRef", { get: function () { return this.bm; }, set: function (a) { this.bm = a; this.g("AggregationsRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionFieldSelectorInfoDescription.prototype, "rulesRef", { get: function () { return this.bp; }, set: function (a) { this.bp = a; this.g("RulesRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionFieldSelectorInfoDescription.prototype, "selectedAggregationsRef", { get: function () { return this.bq; }, set: function (a) { this.bq = a; this.g("SelectedAggregationsRef"); }, enumerable: false, configurable: true }); ToolActionFieldSelectorInfoDescription.$t = markType(ToolActionFieldSelectorInfoDescription, 'ToolActionFieldSelectorInfoDescription', ToolActionInfoDescription.$); ToolActionFieldSelectorInfoDescription.__marshalByValue1 = true; ToolActionFieldSelectorInfoDescription.__marshalByValueAlias1 = "ToolActionFieldSelectorInfo"; return ToolActionFieldSelectorInfoDescription; }(ToolActionInfoDescription)); export { ToolActionFieldSelectorInfoDescription };