UNPKG

@nepwork/dashboards

Version:

Dashboards for emergencies and monitoring

37 lines 1.18 kB
import { __decorate } from "tslib"; import { Component } from '@angular/core'; /** * Component intended to be used within the `<nb-flip-card>` and `<nb-reveal-card>` components. * * Use it as a container for the front card. */ var NbCardFrontComponent = /** @class */ (function () { function NbCardFrontComponent() { } NbCardFrontComponent = __decorate([ Component({ selector: 'nb-card-front', template: '<ng-content select="nb-card"></ng-content>' }) ], NbCardFrontComponent); return NbCardFrontComponent; }()); export { NbCardFrontComponent }; /** * Component intended to be used within the `<nb-flip-card>` and `<nb-reveal-card>` components. * * Use it as a container for the back card. */ var NbCardBackComponent = /** @class */ (function () { function NbCardBackComponent() { } NbCardBackComponent = __decorate([ Component({ selector: 'nb-card-back', template: '<ng-content select="nb-card"></ng-content>' }) ], NbCardBackComponent); return NbCardBackComponent; }()); export { NbCardBackComponent }; //# sourceMappingURL=shared.component.js.map