igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
110 lines (109 loc) • 3.82 kB
JavaScript
/*
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.d3 = null;
_this.d5 = null;
_this.d0 = false;
_this.d2 = null;
_this.dw = null;
_this.dx = null;
_this.d4 = null;
return _this;
}
ToolActionCheckboxListDescription.prototype.get_type = function () {
return "ToolActionCheckboxList";
};
Object.defineProperty(ToolActionCheckboxListDescription.prototype, "dataSourceRef", {
get: function () {
return this.d3;
},
set: function (a) {
this.d3 = a;
this.j("DataSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxListDescription.prototype, "selectedMemberPath", {
get: function () {
return this.d5;
},
set: function (a) {
this.d5 = a;
this.j("SelectedMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxListDescription.prototype, "showSelectAll", {
get: function () {
return this.d0;
},
set: function (a) {
this.d0 = a;
this.j("ShowSelectAll");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxListDescription.prototype, "dataMemberPath", {
get: function () {
return this.d2;
},
set: function (a) {
this.d2 = a;
this.j("DataMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxListDescription.prototype, "primaryKey", {
get: function () {
return this.dw;
},
set: function (a) {
this.dw = a;
this.j("PrimaryKey");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxListDescription.prototype, "selectedKeys", {
get: function () {
return this.dx;
},
set: function (a) {
this.dx = a;
this.j("SelectedKeys");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxListDescription.prototype, "indexType", {
get: function () {
return this.d4;
},
set: function (a) {
this.d4 = a;
this.j("IndexType");
},
enumerable: false,
configurable: true
});
ToolActionCheckboxListDescription.$t = markType(ToolActionCheckboxListDescription, 'ToolActionCheckboxListDescription', ToolActionDescription.$);
return ToolActionCheckboxListDescription;
}(ToolActionDescription));
export { ToolActionCheckboxListDescription };