{"version":3,"file":"ng-zorro-antd-card.mjs","sources":["../../components/card/card-grid.directive.ts","../../components/card/card-meta.component.ts","../../components/card/card-tab.component.ts","../../components/card/card.component.ts","../../components/card/card.module.ts","../../components/card/public-api.ts","../../components/card/ng-zorro-antd-card.ts"],"sourcesContent":["/**\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE\n */\n\nimport { Directive, Input, booleanAttribute } from '@angular/core';\n\n@Directive({\n selector: '[nz-card-grid]',\n exportAs: 'nzCardGrid',\n host: {\n class: 'ant-card-grid',\n '[class.ant-card-hoverable]': 'nzHoverable'\n }\n})\nexport class NzCardGridDirective {\n @Input({ transform: booleanAttribute }) nzHoverable = true;\n}\n","/**\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE\n */\n\nimport { NgTemplateOutlet } from '@angular/common';\nimport { ChangeDetectionStrategy, Component, Input, TemplateRef, ViewEncapsulation } from '@angular/core';\n\nimport { NzOutletModule } from 'ng-zorro-antd/core/outlet';\n\n@Component({\n selector: 'nz-card-meta',\n exportAs: 'nzCardMeta',\n preserveWhitespaces: false,\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n template: `\n @if (nzAvatar) {\n
\n }\n\n @if (nzTitle || nzDescription) {\n \n }\n `,\n host: { class: 'ant-card-meta' },\n imports: [NgTemplateOutlet, NzOutletModule]\n})\nexport class NzCardMetaComponent {\n @Input() nzTitle: string | TemplateRef