@praxisui/dynamic-fields 8.0.0-beta.18 → 8.0.0-beta.19

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.
@@ -13502,7 +13502,7 @@ class TextInputComponent extends SimpleBaseInputComponent {
13502
13502
  [attr.aria-disabled]="disabledMode ? 'true' : null"
13503
13503
  [maxlength]="metadata()?.maxLength || null"
13504
13504
  [minlength]="metadata()?.minLength || null"
13505
- [attr.aria-label]="!label && placeholder ? placeholder : null"
13505
+ [attr.aria-label]="metadata()?.ariaLabel || label || placeholder || null"
13506
13506
  [attr.aria-required]="metadata()?.required ? 'true' : 'false'"
13507
13507
  [attr.aria-invalid]="ariaInvalidAttribute()"
13508
13508
  [matTooltip]="tooltipEnabled() ? errorMessage() : null"
@@ -13594,7 +13594,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.17", ngImpo
13594
13594
  [attr.aria-disabled]="disabledMode ? 'true' : null"
13595
13595
  [maxlength]="metadata()?.maxLength || null"
13596
13596
  [minlength]="metadata()?.minLength || null"
13597
- [attr.aria-label]="!label && placeholder ? placeholder : null"
13597
+ [attr.aria-label]="metadata()?.ariaLabel || label || placeholder || null"
13598
13598
  [attr.aria-required]="metadata()?.required ? 'true' : 'false'"
13599
13599
  [attr.aria-invalid]="ariaInvalidAttribute()"
13600
13600
  [matTooltip]="tooltipEnabled() ? errorMessage() : null"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/dynamic-fields",
3
- "version": "8.0.0-beta.18",
3
+ "version": "8.0.0-beta.19",
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": "^20.1.0",
@@ -10,9 +10,9 @@
10
10
  "@angular/cdk": "^20.1.0",
11
11
  "@angular/router": "^20.1.0",
12
12
  "rxjs": "^7.8.0",
13
- "@praxisui/core": "^8.0.0-beta.18",
14
- "@praxisui/cron-builder": "^8.0.0-beta.18",
15
- "@praxisui/dialog": "^8.0.0-beta.18"
13
+ "@praxisui/core": "^8.0.0-beta.19",
14
+ "@praxisui/cron-builder": "^8.0.0-beta.19",
15
+ "@praxisui/dialog": "^8.0.0-beta.19"
16
16
  },
17
17
  "dependencies": {
18
18
  "libphonenumber-js": "^1.12.41",