UNPKG

nd-gui

Version:

UI components for NetDocuments

39 lines (36 loc) 1.55 kB
import { Component, Input, NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; var FooterComponent = /** @class */ (function () { function FooterComponent() { } FooterComponent.prototype.ngOnInit = function () { }; return FooterComponent; }()); FooterComponent.decorators = [ { type: Component, args: [{ selector: 'nd-footer', template: "<div class=\"nd-footer\" [ngStyle]=\"inlineStyle\">\n <ng-content></ng-content>\n</div>\n", styles: [".nd-footer{position:absolute;bottom:0;left:0;margin:0;padding:13px 20px 10px;width:100%;background-color:#fff;border-top:1px solid #ccc;-webkit-box-sizing:border-box;box-sizing:border-box}.nd-footer p{margin:3px 0}.nd-footer p.primary{font-weight:700;font-size:14px;text-transform:uppercase}.nd-footer p.secondary{opacity:.8;font-size:12px}"] },] }, ]; FooterComponent.ctorParameters = function () { return []; }; FooterComponent.propDecorators = { inlineStyle: [{ type: Input, args: ["style",] }] }; var ndFooterModule = /** @class */ (function () { function ndFooterModule() { } return ndFooterModule; }()); ndFooterModule.decorators = [ { type: NgModule, args: [{ imports: [ CommonModule ], declarations: [FooterComponent], exports: [FooterComponent] },] }, ]; export { ndFooterModule, FooterComponent }; //# sourceMappingURL=nd-gui-footer.js.map