ng2-bootstrap
Version:
angular2 bootstrap components
23 lines (22 loc) • 887 B
JavaScript
;
var core_1 = require('@angular/core');
var ProgressbarComponent = (function () {
function ProgressbarComponent() {
}
ProgressbarComponent.decorators = [
{ type: core_1.Component, args: [{
selector: 'progressbar',
template: "\n <div progress [animate]=\"animate\" [max]=\"max\">\n <bar [type]=\"type\" [value]=\"value\">\n <ng-content></ng-content>\n </bar>\n </div>\n "
},] },
];
/** @nocollapse */
ProgressbarComponent.ctorParameters = [];
ProgressbarComponent.propDecorators = {
'animate': [{ type: core_1.Input },],
'max': [{ type: core_1.Input },],
'type': [{ type: core_1.Input },],
'value': [{ type: core_1.Input },],
};
return ProgressbarComponent;
}());
exports.ProgressbarComponent = ProgressbarComponent;