nd-gui
Version:
UI components for NetDocuments
63 lines (57 loc) • 1.72 kB
JavaScript
import { Component, Input, NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
class FooterComponent {
constructor() { }
/**
* @return {?}
*/
ngOnInit() {
}
}
FooterComponent.decorators = [
{ type: Component, args: [{
selector: 'nd-footer',
template: `<div class="nd-footer" [ngStyle]="inlineStyle">
<ng-content></ng-content>
</div>
`,
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}`]
},] },
];
/** @nocollapse */
FooterComponent.ctorParameters = () => [];
FooterComponent.propDecorators = {
inlineStyle: [{ type: Input, args: ["style",] }]
};
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
class ndFooterModule {
}
ndFooterModule.decorators = [
{ type: NgModule, args: [{
imports: [
CommonModule
],
declarations: [FooterComponent],
exports: [FooterComponent]
},] },
];
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
/**
* Generated bundle index. Do not edit.
*/
export { ndFooterModule, FooterComponent };
//# sourceMappingURL=nd-gui-footer.js.map