UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

88 lines (87 loc) 3.36 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.bu = null; _this.bt = null; _this.bv = null; _this.bq = false; _this.bn = null; return _this; } ToolActionCheckboxListInfoDescription.prototype.get_type = function () { return "ToolActionCheckboxListInfo"; }; Object.defineProperty(ToolActionCheckboxListInfoDescription.prototype, "dataSourceRef", { get: function () { return this.bu; }, set: function (a) { this.bu = a; this.j("DataSourceRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListInfoDescription.prototype, "dataMemberPath", { get: function () { return this.bt; }, set: function (a) { this.bt = a; this.j("DataMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListInfoDescription.prototype, "selectedMemberPath", { get: function () { return this.bv; }, set: function (a) { this.bv = a; this.j("SelectedMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListInfoDescription.prototype, "showSelectAll", { get: function () { return this.bq; }, set: function (a) { this.bq = a; this.j("ShowSelectAll"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListInfoDescription.prototype, "primaryKey", { get: function () { return this.bn; }, set: function (a) { this.bn = a; this.j("PrimaryKey"); }, enumerable: false, configurable: true }); ToolActionCheckboxListInfoDescription.$t = markType(ToolActionCheckboxListInfoDescription, 'ToolActionCheckboxListInfoDescription', ToolActionInfoDescription.$); ToolActionCheckboxListInfoDescription.__marshalByValue1 = true; ToolActionCheckboxListInfoDescription.__marshalByValueAlias1 = "ToolActionCheckboxListInfo"; return ToolActionCheckboxListInfoDescription; }(ToolActionInfoDescription)); export { ToolActionCheckboxListInfoDescription };