UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

56 lines (55 loc) 1.92 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 ToolActionComboDescription = /*@__PURE__*/ (() => { class ToolActionComboDescription extends ToolActionDescription { constructor() { super(); this.dy = null; this.dz = null; this.d0 = null; this.dw = null; } get_type() { return "ToolActionCombo"; } get dataSourceRef() { return this.dy; } set dataSourceRef(a) { this.dy = a; this.j("DataSourceRef"); } get displayMemberPath() { return this.dz; } set displayMemberPath(a) { this.dz = a; this.j("DisplayMemberPath"); } get valueMemberPath() { return this.d0; } set valueMemberPath(a) { this.d0 = a; this.j("ValueMemberPath"); } get selectedValues() { return this.dw; } set selectedValues(a) { this.dw = a; this.j("SelectedValues"); } } ToolActionComboDescription.$t = markType(ToolActionComboDescription, 'ToolActionComboDescription', ToolActionDescription.$); return ToolActionComboDescription; })();