UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

66 lines (65 loc) 2.37 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 { constructor() { super(); this.bu = null; this.bt = null; this.bv = null; this.bq = false; this.bn = null; } get_type() { return "ToolActionCheckboxListInfo"; } get dataSourceRef() { return this.bu; } set dataSourceRef(a) { this.bu = a; this.j("DataSourceRef"); } get dataMemberPath() { return this.bt; } set dataMemberPath(a) { this.bt = a; this.j("DataMemberPath"); } get selectedMemberPath() { return this.bv; } set selectedMemberPath(a) { this.bv = a; this.j("SelectedMemberPath"); } get showSelectAll() { return this.bq; } set showSelectAll(a) { this.bq = a; this.j("ShowSelectAll"); } get primaryKey() { return this.bn; } set primaryKey(a) { this.bn = a; this.j("PrimaryKey"); } } ToolActionCheckboxListInfoDescription.$t = markType(ToolActionCheckboxListInfoDescription, 'ToolActionCheckboxListInfoDescription', ToolActionInfoDescription.$); ToolActionCheckboxListInfoDescription.__marshalByValue1 = true; ToolActionCheckboxListInfoDescription.__marshalByValueAlias1 = "ToolActionCheckboxListInfo"; return ToolActionCheckboxListInfoDescription; })();