UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

110 lines (109 loc) 3.86 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 { ToolActionDescription } from "./ToolActionDescription"; import { markType } from "./type"; /** * @hidden */ var ToolActionFieldSelectorDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolActionFieldSelectorDescription, _super); function ToolActionFieldSelectorDescription() { var _this = _super.call(this) || this; _this.d4 = null; _this.d6 = null; _this.d5 = null; _this.d0 = false; _this.dw = null; _this.d1 = false; _this.dx = null; return _this; } ToolActionFieldSelectorDescription.prototype.get_type = function () { return "ToolActionFieldSelector"; }; Object.defineProperty(ToolActionFieldSelectorDescription.prototype, "dataSourceRef", { get: function () { return this.d4; }, set: function (a) { this.d4 = a; this.j("DataSourceRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionFieldSelectorDescription.prototype, "legendTargetRef", { get: function () { return this.d6; }, set: function (a) { this.d6 = a; this.j("LegendTargetRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionFieldSelectorDescription.prototype, "fieldType", { get: function () { return this.d5; }, set: function (a) { this.d5 = a; this.j("FieldType"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionFieldSelectorDescription.prototype, "singleSelection", { get: function () { return this.d0; }, set: function (a) { this.d0 = a; this.j("SingleSelection"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionFieldSelectorDescription.prototype, "aggregations", { get: function () { return this.dw; }, set: function (a) { this.dw = a; this.j("Aggregations"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionFieldSelectorDescription.prototype, "updateDataSource", { get: function () { return this.d1; }, set: function (a) { this.d1 = a; this.j("UpdateDataSource"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionFieldSelectorDescription.prototype, "selectedAggregations", { get: function () { return this.dx; }, set: function (a) { this.dx = a; this.j("SelectedAggregations"); }, enumerable: false, configurable: true }); ToolActionFieldSelectorDescription.$t = markType(ToolActionFieldSelectorDescription, 'ToolActionFieldSelectorDescription', ToolActionDescription.$); return ToolActionFieldSelectorDescription; }(ToolActionDescription)); export { ToolActionFieldSelectorDescription };