igniteui-react-core
Version:
Ignite UI React Core.
110 lines (109 loc) • 3.75 kB
JavaScript
/*
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.ea = null;
_this.ec = null;
_this.eb = null;
_this.d6 = false;
_this.d2 = null;
_this.d7 = false;
_this.d3 = null;
return _this;
}
ToolActionFieldSelectorDescription.prototype.get_type = function () {
return "ToolActionFieldSelector";
};
Object.defineProperty(ToolActionFieldSelectorDescription.prototype, "dataSourceRef", {
get: function () {
return this.ea;
},
set: function (a) {
this.ea = a;
this.j("DataSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionFieldSelectorDescription.prototype, "legendTargetRef", {
get: function () {
return this.ec;
},
set: function (a) {
this.ec = a;
this.j("LegendTargetRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionFieldSelectorDescription.prototype, "fieldType", {
get: function () {
return this.eb;
},
set: function (a) {
this.eb = a;
this.j("FieldType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionFieldSelectorDescription.prototype, "singleSelection", {
get: function () {
return this.d6;
},
set: function (a) {
this.d6 = a;
this.j("SingleSelection");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionFieldSelectorDescription.prototype, "aggregations", {
get: function () {
return this.d2;
},
set: function (a) {
this.d2 = a;
this.j("Aggregations");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionFieldSelectorDescription.prototype, "updateDataSource", {
get: function () {
return this.d7;
},
set: function (a) {
this.d7 = a;
this.j("UpdateDataSource");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionFieldSelectorDescription.prototype, "selectedAggregations", {
get: function () {
return this.d3;
},
set: function (a) {
this.d3 = a;
this.j("SelectedAggregations");
},
enumerable: false,
configurable: true
});
ToolActionFieldSelectorDescription.$t = markType(ToolActionFieldSelectorDescription, 'ToolActionFieldSelectorDescription', ToolActionDescription.$);
return ToolActionFieldSelectorDescription;
}(ToolActionDescription));
export { ToolActionFieldSelectorDescription };