UNPKG

nd-gui

Version:

UI components for NetDocuments

63 lines (57 loc) 1.63 kB
import { Component, Input, NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; /** * @fileoverview added by tsickle * @suppress {checkTypes} checked by tsc */ class CardComponent { constructor() { } /** * @return {?} */ ngOnInit() { } } CardComponent.decorators = [ { type: Component, args: [{ selector: 'nd-card', template: `<div [ngClass]="'nd-card'" [attr.id]="cardId" [ngStyle]="style" [class]="styleClass"> <ng-content></ng-content> </div> `, styles: [`:host{display:inline-block}.nd-card{border-radius:2px;background-color:#fff;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.3);box-shadow:0 1px 3px 0 rgba(0,0,0,.3);min-width:100px;min-height:100px;overflow:hidden;position:relative}`] },] }, ]; /** @nocollapse */ CardComponent.ctorParameters = () => []; CardComponent.propDecorators = { cardId: [{ type: Input }], styleClass: [{ type: Input }], style: [{ type: Input }] }; /** * @fileoverview added by tsickle * @suppress {checkTypes} checked by tsc */ class ndCardModule { } ndCardModule.decorators = [ { type: NgModule, args: [{ imports: [CommonModule], declarations: [CardComponent], exports: [CardComponent] },] }, ]; /** * @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 { ndCardModule, CardComponent }; //# sourceMappingURL=nd-gui-card.js.map