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
parent
commit
ddff7ced0e
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 7
      libs/ui/src/lib/shared/abstract-mat-form-field.ts

4
CHANGELOG.md

@ -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

7
libs/ui/src/lib/shared/abstract-mat-form-field.ts

@ -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
{

Loading…
Cancel
Save