{"ast":null,"code":"import { CommonModule } from '@angular/common';\nimport * as i0 from \"@angular/core\";\nimport * as i1 from \"@angular/common\";\nconst _c0 = [[[\"\", 8, \"body-content\"]], [[\"\", 8, \"header-content\"]]];\nconst _c1 = [\".body-content\", \".header-content\"];\nfunction CardComponent_div_1_span_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"span\");\n i0.ɵɵtext(1);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance();\n i0.ɵɵtextInterpolate(ctx_r0.title);\n }\n}\nfunction CardComponent_div_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 3);\n i0.ɵɵtemplate(1, CardComponent_div_1_span_1_Template, 2, 1, \"span\", 4);\n i0.ɵɵprojection(2, 1);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"ngIf\", ctx_r0.title);\n }\n}\nexport class CardComponent {\n constructor() {\n this.title = null;\n this.col = null;\n this.padding = 0;\n this.hideTitle = false;\n }\n static #_ = this.ɵfac = function CardComponent_Factory(t) {\n return new (t || CardComponent)();\n };\n static #_2 = this.ɵcmp = /*@__PURE__*/i0.ɵɵdefineComponent({\n type: CardComponent,\n selectors: [[\"card\"]],\n inputs: {\n title: \"title\",\n col: \"col\",\n padding: \"padding\",\n hideTitle: \"hideTitle\"\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n ngContentSelectors: _c1,\n decls: 4,\n vars: 2,\n consts: [[1, \"card\"], [\"class\", \"card-header\", 4, \"ngIf\"], [3, \"ngClass\"], [1, \"card-header\"], [4, \"ngIf\"]],\n template: function CardComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵprojectionDef(_c0);\n i0.ɵɵelementStart(0, \"div\", 0);\n i0.ɵɵtemplate(1, CardComponent_div_1_Template, 3, 1, \"div\", 1);\n i0.ɵɵelementStart(2, \"div\", 2);\n i0.ɵɵprojection(3);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"ngIf\", !ctx.hideTitle);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"ngClass\", \"card-body p-\" + ctx.padding);\n }\n },\n dependencies: [CommonModule, i1.NgClass, i1.NgIf],\n styles: [\"/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJjYXJkLmNvbXBvbmVudC5jc3MifQ== */\\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3NyYy9hcHAvY29tcG9uZW50cy9jb21tb24vY2FyZC9jYXJkLmNvbXBvbmVudC5jc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUNBLGdLQUFnSyIsInNvdXJjZVJvb3QiOiIifQ== */\"]\n });\n}","map":{"version":3,"names":["CommonModule","i0","ɵɵelementStart","ɵɵtext","ɵɵelementEnd","ɵɵadvance","ɵɵtextInterpolate","ctx_r0","title","ɵɵtemplate","CardComponent_div_1_span_1_Template","ɵɵprojection","ɵɵproperty","CardComponent","constructor","col","padding","hideTitle","_","_2","selectors","inputs","standalone","features","ɵɵStandaloneFeature","ngContentSelectors","_c1","decls","vars","consts","template","CardComponent_Template","rf","ctx","CardComponent_div_1_Template","i1","NgClass","NgIf","styles"],"sources":["E:\\TekH\\Visual Studio\\WebUserManager\\DigitalData.UserManager.NgWebUI\\ClientApp\\src\\app\\components\\common\\card\\card.component.ts","E:\\TekH\\Visual Studio\\WebUserManager\\DigitalData.UserManager.NgWebUI\\ClientApp\\src\\app\\components\\common\\card\\card.component.html"],"sourcesContent":["import { Component, Input } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\n\r\n@Component({\r\n selector: 'card',\r\n standalone: true,\r\n imports: [CommonModule],\r\n templateUrl: './card.component.html',\r\n styleUrls: ['./card.component.css']\r\n})\r\nexport class CardComponent {\r\n @Input() title: string | null = null;\r\n @Input() col: number | null = null;\r\n @Input() padding: number = 0;\r\n @Input() hideTitle: boolean = false;\r\n}","