UNPKG

igniteui-react-core

Version:
76 lines (75 loc) 2.82 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 { __extends } from "tslib"; import { ToolActionInfoDescription } from "./ToolActionInfoDescription"; import { markType } from "./type"; /** * @hidden */ var ToolActionComboInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolActionComboInfoDescription, _super); function ToolActionComboInfoDescription() { var _this = _super.call(this) || this; _this.bi = null; _this.bj = null; _this.bl = null; _this.bk = null; return _this; } ToolActionComboInfoDescription.prototype.get_type = function () { return "ToolActionComboInfo"; }; Object.defineProperty(ToolActionComboInfoDescription.prototype, "dataSourceRef", { get: function () { return this.bi; }, set: function (a) { this.bi = a; this.g("DataSourceRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionComboInfoDescription.prototype, "displayMemberPath", { get: function () { return this.bj; }, set: function (a) { this.bj = a; this.g("DisplayMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionComboInfoDescription.prototype, "valueMemberPath", { get: function () { return this.bl; }, set: function (a) { this.bl = a; this.g("ValueMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionComboInfoDescription.prototype, "selectedValuesRef", { get: function () { return this.bk; }, set: function (a) { this.bk = a; this.g("SelectedValuesRef"); }, enumerable: false, configurable: true }); ToolActionComboInfoDescription.$t = markType(ToolActionComboInfoDescription, 'ToolActionComboInfoDescription', ToolActionInfoDescription.$); ToolActionComboInfoDescription.__marshalByValue1 = true; ToolActionComboInfoDescription.__marshalByValueAlias1 = "ToolActionComboInfo"; return ToolActionComboInfoDescription; }(ToolActionInfoDescription)); export { ToolActionComboInfoDescription };