feat: migrate everything to standalone and fix build errors

This commit is contained in:
Enea Jahollari
2023-09-25 12:43:29 +02:00
parent 4171ccc8f3
commit 54614c21f0
1311 changed files with 13140 additions and 8009 deletions

View File

@@ -4,11 +4,14 @@ import { TranslateService } from '@ngx-translate/core';
import { Subscription } from 'rxjs';
import { AlertType } from '../alert/alert-type';
import { AlertComponent } from '../alert/alert.component';
@Component({
selector: 'ds-error',
styleUrls: ['./error.component.scss'],
templateUrl: './error.component.html'
selector: 'ds-error',
styleUrls: ['./error.component.scss'],
templateUrl: './error.component.html',
standalone: true,
imports: [AlertComponent]
})
export class ErrorComponent {