@praxisui/dynamic-fields 9.0.0-beta.85 → 9.0.0-beta.88

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14589,9 +14589,14 @@ class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
14589
14589
  ]);
14590
14590
  }
14591
14591
  ariaLabel() {
14592
- return (this.currentMetadata().ariaLabel ||
14593
- this.label ||
14594
- this.metadata()?.name ||
14592
+ const metadata = this.currentMetadata();
14593
+ if (String(metadata.ariaLabelledby || '').trim()) {
14594
+ return null;
14595
+ }
14596
+ return (String(metadata.ariaLabel || '').trim() ||
14597
+ String(metadata.label || '').trim() ||
14598
+ String(this.label || '').trim() ||
14599
+ String(metadata.name || '').trim() ||
14595
14600
  this.placeholderText());
14596
14601
  }
14597
14602
  interactionDisabled() {
@@ -15455,7 +15460,7 @@ class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
15455
15460
  [formControl]="control()"
15456
15461
  [required]="metadata()?.required || false"
15457
15462
  [multiple]="multiple()"
15458
- [attr.aria-label]="ariaLabel()"
15463
+ [aria-label]="ariaLabel() || ''"
15459
15464
  [matTooltip]="inlineTooltipText()"
15460
15465
  [matTooltipDisabled]="inlineTooltipDisabled()"
15461
15466
  [matTooltipPosition]="tooltipPosition()"
@@ -16028,7 +16033,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
16028
16033
  [formControl]="control()"
16029
16034
  [required]="metadata()?.required || false"
16030
16035
  [multiple]="multiple()"
16031
- [attr.aria-label]="ariaLabel()"
16036
+ [aria-label]="ariaLabel() || ''"
16032
16037
  [matTooltip]="inlineTooltipText()"
16033
16038
  [matTooltipDisabled]="inlineTooltipDisabled()"
16034
16039
  [matTooltipPosition]="tooltipPosition()"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/dynamic-fields",
3
- "version": "9.0.0-beta.85",
3
+ "version": "9.0.0-beta.88",
4
4
  "description": "Angular Material-based dynamic form fields for Praxis UI with lazy loading and metadata-driven rendering.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",
@@ -11,8 +11,8 @@
11
11
  "@angular/platform-browser": "^21.0.0",
12
12
  "@angular/router": "^21.0.0",
13
13
  "rxjs": "^7.8.0",
14
- "@praxisui/core": "^9.0.0-beta.85",
15
- "@praxisui/cron-builder": "^9.0.0-beta.85"
14
+ "@praxisui/core": "^9.0.0-beta.88",
15
+ "@praxisui/cron-builder": "^9.0.0-beta.88"
16
16
  },
17
17
  "dependencies": {
18
18
  "libphonenumber-js": "^1.12.41",
@@ -3067,7 +3067,7 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
3067
3067
  panelSearchIconColor(): string | undefined;
3068
3068
  panelResetIconName(fallback?: string): string;
3069
3069
  panelResetIconColor(): string | undefined;
3070
- ariaLabel(): string;
3070
+ ariaLabel(): string | null;
3071
3071
  interactionDisabled(): boolean;
3072
3072
  readonlySummaryText(): string;
3073
3073
  private lookupDialogMetadata;