UNPKG

igniteui-react-core

Version:
110 lines (109 loc) 3.71 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 { ToolActionDescription } from "./ToolActionDescription"; import { markType } from "./type"; /** * @hidden */ var ToolActionCheckboxListDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolActionCheckboxListDescription, _super); function ToolActionCheckboxListDescription() { var _this = _super.call(this) || this; _this.d2 = null; _this.d4 = null; _this.dz = false; _this.d1 = null; _this.dv = null; _this.dw = null; _this.d3 = null; return _this; } ToolActionCheckboxListDescription.prototype.get_type = function () { return "ToolActionCheckboxList"; }; Object.defineProperty(ToolActionCheckboxListDescription.prototype, "dataSourceRef", { get: function () { return this.d2; }, set: function (a) { this.d2 = a; this.g("DataSourceRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "selectedMemberPath", { get: function () { return this.d4; }, set: function (a) { this.d4 = a; this.g("SelectedMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "showSelectAll", { get: function () { return this.dz; }, set: function (a) { this.dz = a; this.g("ShowSelectAll"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "dataMemberPath", { get: function () { return this.d1; }, set: function (a) { this.d1 = a; this.g("DataMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "primaryKey", { get: function () { return this.dv; }, set: function (a) { this.dv = a; this.g("PrimaryKey"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "selectedKeys", { get: function () { return this.dw; }, set: function (a) { this.dw = a; this.g("SelectedKeys"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "indexType", { get: function () { return this.d3; }, set: function (a) { this.d3 = a; this.g("IndexType"); }, enumerable: false, configurable: true }); ToolActionCheckboxListDescription.$t = markType(ToolActionCheckboxListDescription, 'ToolActionCheckboxListDescription', ToolActionDescription.$); return ToolActionCheckboxListDescription; }(ToolActionDescription)); export { ToolActionCheckboxListDescription };