@praxisui/dynamic-fields 9.0.3 → 9.0.4-rc.10

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.
package/README.md CHANGED
@@ -20,7 +20,7 @@ Use this package when forms, filters, or authoring tools must render field contr
20
20
  ## Install
21
21
 
22
22
  ```bash
23
- npm i @praxisui/dynamic-fields@latest
23
+ npm i @praxisui/dynamic-fields@rc
24
24
  ```
25
25
 
26
26
  Peer dependencies:
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": "1.0.0",
3
- "generatedAt": "2026-07-28T00:59:00.108Z",
3
+ "generatedAt": "2026-08-03T00:29:05.091Z",
4
4
  "packageName": "@praxisui/dynamic-fields",
5
- "packageVersion": "9.0.3",
5
+ "packageVersion": "9.0.4-rc.10",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 76,
@@ -27915,12 +27915,7 @@ class MaterialSearchableSelectComponent extends SimpleBaseSelectComponent {
27915
27915
  }
27916
27916
  registerMatSelect(select) {
27917
27917
  super.registerMatSelect(select);
27918
- const enhanced = select;
27919
- enhanced.displayWith = (opt) => opt && typeof opt === 'object' && 'label' in opt
27920
- ? String(opt.label ?? '')
27921
- : '';
27922
- enhanced.compareWith = (a, b) => a?.id ===
27923
- b?.id;
27918
+ select.compareWith = (left, right) => this.areOptionValuesEqual(left, right);
27924
27919
  }
27925
27920
  refocusSearchInput() {
27926
27921
  if (!this.searchable()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/dynamic-fields",
3
- "version": "9.0.3",
3
+ "version": "9.0.4-rc.10",
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.3",
15
- "@praxisui/cron-builder": "^9.0.3"
14
+ "@praxisui/core": "^9.0.4-rc.10",
15
+ "@praxisui/cron-builder": "^9.0.4-rc.10"
16
16
  },
17
17
  "dependencies": {
18
18
  "libphonenumber-js": "^1.12.41",