my-test123
Version:
A planner front-end for Fabric8.
38 lines • 1.38 kB
JavaScript
import { Component, Input } from '@angular/core';
import { Router, ActivatedRoute } from '@angular/router';
import { Logger } from 'ngx-base';
// ngrx stuff
import { Store } from '@ngrx/store';
var SidepanelComponent = /** @class */ (function () {
function SidepanelComponent(log, router, route, store) {
this.log = log;
this.router = router;
this.route = route;
this.store = store;
this.sidePanelOpen = true;
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 [
{ type: Logger, },
{ type: Router, },
{ type: ActivatedRoute, },
{ type: Store, },
]; };
SidepanelComponent.propDecorators = {
'sidePanelOpen': [{ type: Input },],
};
return SidepanelComponent;
}());
export { SidepanelComponent };
//# sourceMappingURL=side-panel.component.js.map