fabric8-planner
Version:
A planner front-end for Fabric8.
27 lines • 1.07 kB
JavaScript
import { Component, Input } from '@angular/core';
var SidepanelComponent = /** @class */ (function () {
function SidepanelComponent() {
this.sidePanelOpen = true;
this.context = 'list'; // 'list' or 'board'
this.backlogSelected = true;
this.typeGroupSelected = true;
}
SidepanelComponent.prototype.ngOnInit = function () { };
SidepanelComponent.prototype.setGuidedTypeWI = function () { };
SidepanelComponent.decorators = [
{ type: Component, args: [{
selector: 'side-panel',
template: require('./side-panel.component.html'),
styles: [require('./side-panel.component.css').toString()]
},] },
];
/** @nocollapse */
SidepanelComponent.ctorParameters = function () { return []; };
SidepanelComponent.propDecorators = {
'sidePanelOpen': [{ type: Input },],
'context': [{ type: Input },],
};
return SidepanelComponent;
}());
export { SidepanelComponent };
//# sourceMappingURL=side-panel.component.js.map