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.bt = null; _this.bs = null; _this.bu = null; _this.bp = false; _this.bm = null; return _this; } ToolActionCheckboxListInfoDescription.prototype.get_type = function () { return "ToolActionCheckboxListInfo"; }; Object.defineProperty(ToolActionCheckboxListInfoDescription.prototype, "dataSourceRef", { get: function () { return this.bt; }, set: function (a) { this.bt = a; this.g("DataSourceRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListInfoDescription.prototype, "dataMemberPath", { get: function () { return this.bs; }, set: function (a) { this.bs = a; this.g("DataMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListInfoDescription.prototype, "selectedMemberPath", { get: function () { return this.bu; }, set: function (a) { this.bu = a; this.g("SelectedMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListInfoDescription.prototype, "showSelectAll", { get: function () { return this.bp; }, set: function (a) { this.bp = a; this.g("ShowSelectAll"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListInfoDescription.prototype, "primaryKey", { get: function () { return this.bm; }, set: function (a) { this.bm = 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 };