You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
985 B
JavaScript

import { Component, Input } from '@angular/core';
import { ProgressbarConfig } from './progressbarConfig';
var ProgressbarComponent = (function () {
function ProgressbarComponent(config) {
Object.assign(this, config);
}
return ProgressbarComponent;
}());
export { ProgressbarComponent };
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 "
},] },
];
ProgressbarComponent.ctorParameters = function () { return [
{ type: ProgressbarConfig, },
]; };
ProgressbarComponent.propDecorators = {
'animate': [{ type: Input },],
'max': [{ type: Input },],
'type': [{ type: Input },],
'value': [{ type: Input },],
};
//# sourceMappingURL=progressbarComponent.js.map