migrate standalone pipes

This commit is contained in:
2025-01-05 10:20:05 +01:00
parent 597e89ffb3
commit 8b8395fc3c
24 changed files with 39 additions and 139 deletions

View File

@@ -2,8 +2,8 @@ import {CUSTOM_ELEMENTS_SCHEMA, NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
import {GuestComponent} from './guest.component';
import {RouterModule} from '@angular/router';
import {ShowTypeTranslaterModule} from '../../widget-modules/pipes/show-type-translater/show-type-translater.module';
import {SongTextComponent} from '../../widget-modules/components/song-text/song-text.component';
import {ShowTypePipe} from '../../widget-modules/pipes/show-type-translater/show-type.pipe';
@NgModule({
declarations: [GuestComponent],
@@ -16,7 +16,7 @@ import {SongTextComponent} from '../../widget-modules/components/song-text/song-
},
]),
SongTextComponent,
ShowTypeTranslaterModule,
ShowTypePipe,
],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
})