0.25.0 Breaking Changes - SAP/fundamental-ngx GitHub Wiki
fd-form-select
from Form Control #3895
Remove fd-form-select
has been removed. For select form control the Select component should be used.
#3902
DialogRemove fd-dialog-title
, fd-title
should be used
#4009
Message FormRemove [compact]
input
#4067
Remove deprecated File Input#4068
Remove badge as a standalone component#4108
Dialogremoved DIALOG_CONFIG and DIALOG_REF and made DialogConfig and DialogRef classes injectable
Before:
constructor(
@Inject(DIALOG_CONFIG) public dialogConfig: DialogConfig,
@Inject(DIALOG_REF) private _dialogRef: DialogRef
)
Now:
constructor(
public dialogConfig: DialogConfig,
private _dialogRef: DialogRef
)