Automatically migrate to new themeable component convention

This commit is contained in:
Yury Bondarenko
2024-03-28 14:47:46 +01:00
parent e40b6ae612
commit 6051b82821
482 changed files with 849 additions and 802 deletions

View File

@@ -10,10 +10,11 @@ import { LogInComponent } from './log-in.component';
* Themed wrapper for {@link LogInComponent}
*/
@Component({
selector: 'ds-themed-log-in',
selector: 'ds-log-in',
styleUrls: [],
templateUrl: './../theme-support/themed.component.html',
standalone: true,
imports: [LogInComponent],
})
export class ThemedLogInComponent extends ThemedComponent<LogInComponent> {