Browse Source
Merge branch 'main' into task/extend-entity-logo-component-by-has-placeholder-attribute
pull/7553/head
Thomas Kaul
3 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
6 additions and
5 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/shared/abstract-mat-form-field.ts
|
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Extended the entity logo component by a `hasPlaceholder` attribute to reserve the space of a missing logo |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Migrated the abstract _Material_ form field from a component to a directive |
|
|
|
|
|
|
|
## 3.43.0 - 2026-08-06 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
@ -1,7 +1,7 @@ |
|
|
|
import { FocusMonitor } from '@angular/cdk/a11y'; |
|
|
|
import { coerceBooleanProperty } from '@angular/cdk/coercion'; |
|
|
|
import { |
|
|
|
Component, |
|
|
|
Directive, |
|
|
|
DoCheck, |
|
|
|
ElementRef, |
|
|
|
HostBinding, |
|
|
|
@ -13,10 +13,7 @@ import { ControlValueAccessor, NgControl, Validators } from '@angular/forms'; |
|
|
|
import { MatFormFieldControl } from '@angular/material/form-field'; |
|
|
|
import { Subject } from 'rxjs'; |
|
|
|
|
|
|
|
@Component({ |
|
|
|
template: '', |
|
|
|
standalone: false |
|
|
|
}) |
|
|
|
@Directive() |
|
|
|
export abstract class AbstractMatFormField<T> |
|
|
|
implements ControlValueAccessor, DoCheck, MatFormFieldControl<T>, OnDestroy |
|
|
|
{ |
|
|
|
|