igniteui-react-core
Version:
Ignite UI React Core.
112 lines (111 loc) • 4 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 { 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.bt = null;
_this.bu = null;
_this.bo = false;
_this.bn = false;
_this.bs = null;
_this.bv = null;
_this.bw = null;
return _this;
}
ToolActionFieldSelectorInfoDescription.prototype.get_type = function () {
return "ToolActionFieldSelectorInfo";
};
Object.defineProperty(ToolActionFieldSelectorInfoDescription.prototype, "dataSourceRef", {
get: function () {
return this.bt;
},
set: function (a) {
this.bt = a;
this.g("DataSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionFieldSelectorInfoDescription.prototype, "fieldType", {
get: function () {
return this.bu;
},
set: function (a) {
this.bu = a;
this.g("FieldType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionFieldSelectorInfoDescription.prototype, "updateDataSource", {
get: function () {
return this.bo;
},
set: function (a) {
this.bo = a;
this.g("UpdateDataSource");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionFieldSelectorInfoDescription.prototype, "singleSelection", {
get: function () {
return this.bn;
},
set: function (a) {
this.bn = a;
this.g("SingleSelection");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionFieldSelectorInfoDescription.prototype, "aggregationsRef", {
get: function () {
return this.bs;
},
set: function (a) {
this.bs = a;
this.g("AggregationsRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionFieldSelectorInfoDescription.prototype, "rulesRef", {
get: function () {
return this.bv;
},
set: function (a) {
this.bv = a;
this.g("RulesRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionFieldSelectorInfoDescription.prototype, "selectedAggregationsRef", {
get: function () {
return this.bw;
},
set: function (a) {
this.bw = 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 };