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.dx = null;
this.dy = null;
this.dz = null;
this.dv = null;
}
get dataSourceRef() {
return this.dx;
}
set dataSourceRef(a) {
this.dx = a;
this.g("DataSourceRef");
}
get displayMemberPath() {
return this.dy;
}
set displayMemberPath(a) {
this.dy = a;
this.g("DisplayMemberPath");
}
get valueMemberPath() {
return this.dz;
}
set valueMemberPath(a) {
this.dz = a;
this.g("ValueMemberPath");
}
get selectedValues() {
return this.dv;
}
set selectedValues(a) {
this.dv = a;
this.g("SelectedValues");
}
}
ToolActionComboDescription.$t = /*@__PURE__*/ markType(ToolActionComboDescription, 'ToolActionComboDescription', ToolActionDescription.$);
return ToolActionComboDescription;
})();