nd-gui
Version:
UI components for NetDocuments
47 lines (42 loc) • 2.02 kB
JavaScript
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/common')) :
typeof define === 'function' && define.amd ? define('nd-gui/footer', ['exports', '@angular/core', '@angular/common'], factory) :
(factory((global['nd-gui'] = global['nd-gui'] || {}, global['nd-gui'].footer = {}),global.ng.core,global.ng.common));
}(this, (function (exports,core,common) { 'use strict';
var FooterComponent = /** @class */ (function () {
function FooterComponent() {
}
FooterComponent.prototype.ngOnInit = function () {
};
return FooterComponent;
}());
FooterComponent.decorators = [
{ type: core.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: core.Input, args: ["style",] }]
};
var ndFooterModule = /** @class */ (function () {
function ndFooterModule() {
}
return ndFooterModule;
}());
ndFooterModule.decorators = [
{ type: core.NgModule, args: [{
imports: [
common.CommonModule
],
declarations: [FooterComponent],
exports: [FooterComponent]
},] },
];
exports.ndFooterModule = ndFooterModule;
exports.FooterComponent = FooterComponent;
Object.defineProperty(exports, '__esModule', { value: true });
})));
//# sourceMappingURL=nd-gui-footer.umd.js.map