igniteui-react-core
Version:
Ignite UI React Core.
56 lines (55 loc) • 1.88 kB
JavaScript
/*
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 {
get_type() {
return "ToolActionCombo";
}
constructor() {
super();
this.d4 = null;
this.d5 = null;
this.d6 = null;
this.d2 = null;
}
get dataSourceRef() {
return this.d4;
}
set dataSourceRef(a) {
this.d4 = a;
this.j("DataSourceRef");
}
get displayMemberPath() {
return this.d5;
}
set displayMemberPath(a) {
this.d5 = a;
this.j("DisplayMemberPath");
}
get valueMemberPath() {
return this.d6;
}
set valueMemberPath(a) {
this.d6 = a;
this.j("ValueMemberPath");
}
get selectedValues() {
return this.d2;
}
set selectedValues(a) {
this.d2 = a;
this.j("SelectedValues");
}
}
ToolActionComboDescription.$t = /*@__PURE__*/ markType(ToolActionComboDescription, 'ToolActionComboDescription', ToolActionDescription.$);
return ToolActionComboDescription;
})();