igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
77 lines (76 loc) • 2.48 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 { Base, markType } from "igniteui-angular-core";
import { List$1 } from "igniteui-angular-core";
/**
* @hidden
*/
var DropDownItem = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DropDownItem, _super);
function DropDownItem() {
var _this = _super.call(this) || this;
_this.j = null;
_this.a = true;
_this.b = true;
_this.l = null;
_this.n = null;
_this.d = false;
_this.e = false;
_this.i = false;
_this.p = null;
_this.m = null;
return _this;
}
Object.defineProperty(DropDownItem.prototype, "c", {
get: function () {
return this.j != null && this.j.count > 0;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DropDownItem.prototype, "f", {
get: function () {
return this.a;
},
set: function (a) {
this.a = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DropDownItem.prototype, "g", {
get: function () {
return this.p == "-";
},
enumerable: false,
configurable: true
});
Object.defineProperty(DropDownItem.prototype, "h", {
get: function () {
return this.b;
},
set: function (a) {
this.b = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DropDownItem.prototype, "k", {
get: function () {
if (this.j == null) {
this.j = new List$1(DropDownItem.$, 0);
}
return this.j;
},
enumerable: false,
configurable: true
});
DropDownItem.$t = markType(DropDownItem, 'DropDownItem');
return DropDownItem;
}(Base));
export { DropDownItem };