ng2-branchy
Version:
angular2 component for visualizing data that can be naturally represented as a tree
25 lines • 895 B
JavaScript
;
var FoldingType = (function () {
function FoldingType(_cssClass) {
this._cssClass = _cssClass;
}
Object.defineProperty(FoldingType.prototype, "cssClass", {
get: function () {
return this._cssClass;
},
enumerable: true,
configurable: true
});
FoldingType.Expanded = new FoldingType('node-expanded');
FoldingType.Collapsed = new FoldingType('node-collapsed');
FoldingType.Leaf = new FoldingType('node-leaf');
return FoldingType;
}());
exports.FoldingType = FoldingType;
(function (TreeStatus) {
TreeStatus[TreeStatus["New"] = 0] = "New";
TreeStatus[TreeStatus["Modified"] = 1] = "Modified";
TreeStatus[TreeStatus["EditInProgress"] = 2] = "EditInProgress";
})(exports.TreeStatus || (exports.TreeStatus = {}));
var TreeStatus = exports.TreeStatus;
//# sourceMappingURL=branchy.types.js.map