UNPKG

igniteui-react-core

Version:
66 lines (65 loc) 2.32 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 ToolActionCheckboxListInfoDescription = /*@__PURE__*/ (() => { class ToolActionCheckboxListInfoDescription extends ToolActionInfoDescription { get_type() { return "ToolActionCheckboxListInfo"; } constructor() { super(); this.bn = null; this.bm = null; this.bo = null; this.bj = false; this.bg = null; } get dataSourceRef() { return this.bn; } set dataSourceRef(a) { this.bn = a; this.g("DataSourceRef"); } get dataMemberPath() { return this.bm; } set dataMemberPath(a) { this.bm = a; this.g("DataMemberPath"); } get selectedMemberPath() { return this.bo; } set selectedMemberPath(a) { this.bo = a; this.g("SelectedMemberPath"); } get showSelectAll() { return this.bj; } set showSelectAll(a) { this.bj = a; this.g("ShowSelectAll"); } get primaryKey() { return this.bg; } set primaryKey(a) { this.bg = a; this.g("PrimaryKey"); } } ToolActionCheckboxListInfoDescription.$t = /*@__PURE__*/ markType(ToolActionCheckboxListInfoDescription, 'ToolActionCheckboxListInfoDescription', ToolActionInfoDescription.$); ToolActionCheckboxListInfoDescription.__marshalByValue1 = true; ToolActionCheckboxListInfoDescription.__marshalByValueAlias1 = "ToolActionCheckboxListInfo"; return ToolActionCheckboxListInfoDescription; })();