ng2-bootstrap
Version:
Native Angular Bootstrap Components
25 lines • 1.02 kB
JavaScript
import { Component, Input } from '@angular/core';
import { ProgressbarConfig } from './progressbar.config';
export var ProgressbarComponent = (function () {
function ProgressbarComponent(config) {
Object.assign(this, config);
}
ProgressbarComponent.decorators = [
{ type: 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 = function () { return [
{ type: ProgressbarConfig, },
]; };
ProgressbarComponent.propDecorators = {
'animate': [{ type: Input },],
'max': [{ type: Input },],
'type': [{ type: Input },],
'value': [{ type: Input },],
};
return ProgressbarComponent;
}());
//# sourceMappingURL=progressbar.component.js.map