@praxisui/dynamic-fields 9.0.64 → 9.0.66

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.
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": "1.0.0",
3
- "generatedAt": "2026-09-05T22:17:32.983Z",
3
+ "generatedAt": "2026-09-06T19:09:46.917Z",
4
4
  "packageName": "@praxisui/dynamic-fields",
5
- "packageVersion": "9.0.64",
5
+ "packageVersion": "9.0.66",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 76,
@@ -31041,6 +31041,14 @@ class InlineAsyncSelectComponent extends MaterialAsyncSelectComponent {
31041
31041
  getSpecificCssClasses() {
31042
31042
  return ['pdx-simple-select', 'pdx-inline-async-select'];
31043
31043
  }
31044
+ /**
31045
+ * The inline control owns a dedicated collection-overlay search field. It
31046
+ * must not inherit the material async-select combobox projection, which
31047
+ * mirrors the selected option object into `termControl` for `displayWith`.
31048
+ */
31049
+ usesSearchCombobox() {
31050
+ return false;
31051
+ }
31044
31052
  hasSelection() {
31045
31053
  return this.selectedCount() > 0;
31046
31054
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/dynamic-fields",
3
- "version": "9.0.64",
3
+ "version": "9.0.66",
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.64",
15
- "@praxisui/cron-builder": "^9.0.64"
14
+ "@praxisui/core": "^9.0.66",
15
+ "@praxisui/cron-builder": "^9.0.66"
16
16
  },
17
17
  "dependencies": {
18
18
  "libphonenumber-js": "^1.12.41",
@@ -3072,6 +3072,12 @@ declare class InlineAsyncSelectComponent extends MaterialAsyncSelectComponent {
3072
3072
  ngAfterViewInit(): void;
3073
3073
  onViewportResize(): void;
3074
3074
  protected getSpecificCssClasses(): string[];
3075
+ /**
3076
+ * The inline control owns a dedicated collection-overlay search field. It
3077
+ * must not inherit the material async-select combobox projection, which
3078
+ * mirrors the selected option object into `termControl` for `displayWith`.
3079
+ */
3080
+ usesSearchCombobox(): boolean;
3075
3081
  hasSelection(): boolean;
3076
3082
  selectedCount(): number;
3077
3083
  additionalSelectedCount(): number;