UNPKG

igniteui-react-core

Version:
206 lines (205 loc) 6.64 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.ef = null; _this.eh = null; _this.d6 = false; _this.ee = null; _this.d2 = null; _this.d3 = null; _this.eg = null; _this.ei = null; _this.ea = null; _this.ec = null; _this.d8 = null; _this.ej = null; _this.eb = null; _this.ed = null; _this.d9 = null; return _this; } ToolActionCheckboxListDescription.prototype.get_type = function () { return "ToolActionCheckboxList"; }; Object.defineProperty(ToolActionCheckboxListDescription.prototype, "dataSourceRef", { get: function () { return this.ef; }, set: function (a) { this.ef = a; this.j("DataSourceRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "selectedMemberPath", { get: function () { return this.eh; }, set: function (a) { this.eh = a; this.j("SelectedMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "showSelectAll", { get: function () { return this.d6; }, set: function (a) { this.d6 = a; this.j("ShowSelectAll"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "dataMemberPath", { get: function () { return this.ee; }, set: function (a) { this.ee = a; this.j("DataMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "primaryKey", { get: function () { return this.d2; }, set: function (a) { this.d2 = a; this.j("PrimaryKey"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "selectedKeys", { get: function () { return this.d3; }, set: function (a) { this.d3 = a; this.j("SelectedKeys"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "indexType", { get: function () { return this.eg; }, set: function (a) { this.eg = a; this.j("IndexType"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "uncheckedBackgroundColor", { get: function () { return this.ei; }, set: function (a) { this.ei = a; this.j("UncheckedBackgroundColor"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "actualUncheckedBackgroundColor", { get: function () { return this.ea; }, set: function (a) { this.ea = a; this.j("ActualUncheckedBackgroundColor"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "checkedBackgroundColor", { get: function () { return this.ec; }, set: function (a) { this.ec = a; this.j("CheckedBackgroundColor"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "actualCheckedBackgroundColor", { get: function () { return this.d8; }, set: function (a) { this.d8 = a; this.j("ActualCheckedBackgroundColor"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "uncheckedBorderColor", { get: function () { return this.ej; }, set: function (a) { this.ej = a; this.j("UncheckedBorderColor"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "actualUncheckedBorderColor", { get: function () { return this.eb; }, set: function (a) { this.eb = a; this.j("ActualUncheckedBorderColor"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "checkedBorderColor", { get: function () { return this.ed; }, set: function (a) { this.ed = a; this.j("CheckedBorderColor"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionCheckboxListDescription.prototype, "actualCheckedBorderColor", { get: function () { return this.d9; }, set: function (a) { this.d9 = a; this.j("ActualCheckedBorderColor"); }, enumerable: false, configurable: true }); ToolActionCheckboxListDescription.$t = markType(ToolActionCheckboxListDescription, 'ToolActionCheckboxListDescription', ToolActionDescription.$); return ToolActionCheckboxListDescription; }(ToolActionDescription)); export { ToolActionCheckboxListDescription };