{ "version": 3, "sources": ["src/app/shared/ui/dialog/dialog.component.ts", "src/app/shared/ui/dialog/dialog.component.html"], "sourcesContent": ["import {\n ChangeDetectionStrategy,\n Component,\n Input,\n OnInit,\n} from '@angular/core';\nimport { MatDialog } from '@angular/material/dialog';\n\n@Component({\n selector: 'lis-dialog',\n templateUrl: './dialog.component.html',\n styleUrls: ['./dialog.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogComponent implements OnInit {\n @Input() variant: 'default' | 'extended' = 'default';\n @Input() isFooterVisible = true;\n\n constructor(private dialogRef: MatDialog) {}\n\n ngOnInit(): void {}\n\n public onCloseClick(): void {\n this.dialogRef.closeAll();\n }\n}\n", "