UNPKG

igniteui-react-core

Version:
82 lines (81 loc) 2.75 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 { ToolActionInfoDescription } from "./ToolActionInfoDescription"; import { markType } from "./type"; /** * @hidden */ export let ToolActionFieldSelectorInfoDescription = /*@__PURE__*/ (() => { class ToolActionFieldSelectorInfoDescription extends ToolActionInfoDescription { get_type() { return "ToolActionFieldSelectorInfo"; } constructor() { super(); this.bt = null; this.bu = null; this.bo = false; this.bn = false; this.bs = null; this.bv = null; this.bw = null; } get dataSourceRef() { return this.bt; } set dataSourceRef(a) { this.bt = a; this.g("DataSourceRef"); } get fieldType() { return this.bu; } set fieldType(a) { this.bu = a; this.g("FieldType"); } get updateDataSource() { return this.bo; } set updateDataSource(a) { this.bo = a; this.g("UpdateDataSource"); } get singleSelection() { return this.bn; } set singleSelection(a) { this.bn = a; this.g("SingleSelection"); } get aggregationsRef() { return this.bs; } set aggregationsRef(a) { this.bs = a; this.g("AggregationsRef"); } get rulesRef() { return this.bv; } set rulesRef(a) { this.bv = a; this.g("RulesRef"); } get selectedAggregationsRef() { return this.bw; } set selectedAggregationsRef(a) { this.bw = a; this.g("SelectedAggregationsRef"); } } ToolActionFieldSelectorInfoDescription.$t = /*@__PURE__*/ markType(ToolActionFieldSelectorInfoDescription, 'ToolActionFieldSelectorInfoDescription', ToolActionInfoDescription.$); ToolActionFieldSelectorInfoDescription.__marshalByValue1 = true; ToolActionFieldSelectorInfoDescription.__marshalByValueAlias1 = "ToolActionFieldSelectorInfo"; return ToolActionFieldSelectorInfoDescription; })();