[CST-15073][CST-15074] Adaptation with standalone components

This commit is contained in:
Alisa Ismailati
2024-09-24 13:00:29 +02:00
committed by Vincenzo Mecca
parent 214a77a65c
commit 83615a1c90
63 changed files with 1211 additions and 786 deletions

View File

@@ -3,6 +3,7 @@ import {
Input,
} from '@angular/core';
import { AuthMethodType } from '../../core/auth/models/auth.method-type';
import { ThemedComponent } from '../theme-support/themed.component';
import { LogInComponent } from './log-in.component';
@@ -20,8 +21,12 @@ export class ThemedLogInComponent extends ThemedComponent<LogInComponent> {
@Input() isStandalonePage: boolean;
@Input() excludedAuthMethod: AuthMethodType;
@Input() showRegisterLink = true;
protected inAndOutputNames: (keyof LogInComponent & keyof this)[] = [
'isStandalonePage',
'isStandalonePage', 'excludedAuthMethod', 'showRegisterLink',
];
protected getComponentName(): string {