my-test123
Version:
A planner front-end for Fabric8.
38 lines • 1.31 kB
JavaScript
import { Component, Input } from '@angular/core';
import { Spaces } from 'ngx-fabric8-wit';
var AssigneesComponent = /** @class */ (function () {
function AssigneesComponent(spaces) {
this.spaces = spaces;
this.assignees = [];
this.spaceSubscription = null;
}
Object.defineProperty(AssigneesComponent.prototype, "assigneeInput", {
set: function (val) {
this.assignees = val;
},
enumerable: true,
configurable: true
});
;
AssigneesComponent.prototype.ngOnInit = function () {
};
AssigneesComponent.decorators = [
{ type: Component, args: [{
selector: 'f8-assignee',
template: require('./assignee.component.html'),
styles: [require('./assignee.component.css').toString()]
},] },
];
/** @nocollapse */
AssigneesComponent.ctorParameters = function () { return [
{ type: Spaces, },
]; };
AssigneesComponent.propDecorators = {
'truncateAfter': [{ type: Input },],
'showFullName': [{ type: Input },],
'assigneeInput': [{ type: Input, args: ['assignees',] },],
};
return AssigneesComponent;
}());
export { AssigneesComponent };
//# sourceMappingURL=assignee.component.js.map