igniteui-react-core
Version:
Ignite UI React Core.
74 lines (73 loc) • 2.6 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 { __extends } from "tslib";
import { ToolActionDescription } from "./ToolActionDescription";
import { markType } from "./type";
/**
* @hidden
*/
var ToolActionComboDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ToolActionComboDescription, _super);
function ToolActionComboDescription() {
var _this = _super.call(this) || this;
_this.d4 = null;
_this.d5 = null;
_this.d6 = null;
_this.d2 = null;
return _this;
}
ToolActionComboDescription.prototype.get_type = function () {
return "ToolActionCombo";
};
Object.defineProperty(ToolActionComboDescription.prototype, "dataSourceRef", {
get: function () {
return this.d4;
},
set: function (a) {
this.d4 = a;
this.j("DataSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionComboDescription.prototype, "displayMemberPath", {
get: function () {
return this.d5;
},
set: function (a) {
this.d5 = a;
this.j("DisplayMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionComboDescription.prototype, "valueMemberPath", {
get: function () {
return this.d6;
},
set: function (a) {
this.d6 = a;
this.j("ValueMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionComboDescription.prototype, "selectedValues", {
get: function () {
return this.d2;
},
set: function (a) {
this.d2 = a;
this.j("SelectedValues");
},
enumerable: false,
configurable: true
});
ToolActionComboDescription.$t = markType(ToolActionComboDescription, 'ToolActionComboDescription', ToolActionDescription.$);
return ToolActionComboDescription;
}(ToolActionDescription));
export { ToolActionComboDescription };