UNPKG

igniteui-react-core

Version:
80 lines (79 loc) 2.5 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 { ToolActionDescription } from "./ToolActionDescription"; import { markType } from "./type"; /** * @hidden */ export let ToolActionCheckboxListDescription = /*@__PURE__*/ (() => { class ToolActionCheckboxListDescription extends ToolActionDescription { get_type() { return "ToolActionCheckboxList"; } constructor() { super(); this.d2 = null; this.d4 = null; this.dz = false; this.d1 = null; this.dv = null; this.dw = null; this.d3 = null; } get dataSourceRef() { return this.d2; } set dataSourceRef(a) { this.d2 = a; this.g("DataSourceRef"); } get selectedMemberPath() { return this.d4; } set selectedMemberPath(a) { this.d4 = a; this.g("SelectedMemberPath"); } get showSelectAll() { return this.dz; } set showSelectAll(a) { this.dz = a; this.g("ShowSelectAll"); } get dataMemberPath() { return this.d1; } set dataMemberPath(a) { this.d1 = a; this.g("DataMemberPath"); } get primaryKey() { return this.dv; } set primaryKey(a) { this.dv = a; this.g("PrimaryKey"); } get selectedKeys() { return this.dw; } set selectedKeys(a) { this.dw = a; this.g("SelectedKeys"); } get indexType() { return this.d3; } set indexType(a) { this.d3 = a; this.g("IndexType"); } } ToolActionCheckboxListDescription.$t = /*@__PURE__*/ markType(ToolActionCheckboxListDescription, 'ToolActionCheckboxListDescription', ToolActionDescription.$); return ToolActionCheckboxListDescription; })();