UNPKG

igniteui-react-core

Version:
88 lines (87 loc) 3.28 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 ToolActionCheckboxListInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolActionCheckboxListInfoDescription, _super); function ToolActionCheckboxListInfoDescription() { var _this = _super.call(this) || this; _this.bn = null; _this.bm = null; _this.bo = null; _this.bj = false; _this.bg = null; return _this; } ToolActionCheckboxListInfoDescription.prototype.get_type = function () { return "ToolActionCheckboxListInfo"; }; Object.defineProperty(ToolActionCheckboxListInfoDescription.prototype, "dataSourceRef", { get: function () { return this.bn; }, set: function (a) { this.bn = a; this.g("DataSourceRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListInfoDescription.prototype, "dataMemberPath", { get: function () { return this.bm; }, set: function (a) { this.bm = a; this.g("DataMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListInfoDescription.prototype, "selectedMemberPath", { get: function () { return this.bo; }, set: function (a) { this.bo = a; this.g("SelectedMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListInfoDescription.prototype, "showSelectAll", { get: function () { return this.bj; }, set: function (a) { this.bj = a; this.g("ShowSelectAll"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListInfoDescription.prototype, "primaryKey", { get: function () { return this.bg; }, set: function (a) { this.bg = a; this.g("PrimaryKey"); }, enumerable: false, configurable: true }); ToolActionCheckboxListInfoDescription.$t = markType(ToolActionCheckboxListInfoDescription, 'ToolActionCheckboxListInfoDescription', ToolActionInfoDescription.$); ToolActionCheckboxListInfoDescription.__marshalByValue1 = true; ToolActionCheckboxListInfoDescription.__marshalByValueAlias1 = "ToolActionCheckboxListInfo"; return ToolActionCheckboxListInfoDescription; }(ToolActionInfoDescription)); export { ToolActionCheckboxListInfoDescription };