@praxisui/dynamic-fields 9.0.0-beta.47 → 9.0.0-beta.49

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-07-08T03:07:40.937Z",
3
+ "generatedAt": "2026-07-08T13:56:54.600Z",
4
4
  "packageName": "@praxisui/dynamic-fields",
5
- "packageVersion": "9.0.0-beta.47",
5
+ "packageVersion": "9.0.0-beta.49",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 76,
@@ -3539,6 +3539,16 @@ class SimpleBaseSelectComponent extends SimpleBaseInputComponent {
3539
3539
  this.scheduleRemoteOptionsLoad(remoteLoadSignature, () => this.loadOptions());
3540
3540
  }
3541
3541
  }
3542
+ else {
3543
+ this.clearRemoteOptionSourceState(metadata.filterCriteria ?? {});
3544
+ }
3545
+ }
3546
+ clearRemoteOptionSourceState(filterCriteria = {}) {
3547
+ this.resourcePath.set(null);
3548
+ this.filterCriteria.set(filterCriteria);
3549
+ this.loading.set(false);
3550
+ this.error.set(null);
3551
+ this.hasLoadedOnce = false;
3542
3552
  }
3543
3553
  scheduleRemoteOptionsLoad(signature, load) {
3544
3554
  if (signature === this.remoteOptionsLoadSignature &&
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/dynamic-fields",
3
- "version": "9.0.0-beta.47",
3
+ "version": "9.0.0-beta.49",
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.47",
15
- "@praxisui/cron-builder": "^9.0.0-beta.47"
14
+ "@praxisui/core": "^9.0.0-beta.49",
15
+ "@praxisui/cron-builder": "^9.0.0-beta.49"
16
16
  },
17
17
  "dependencies": {
18
18
  "libphonenumber-js": "^1.12.41",
@@ -1136,6 +1136,7 @@ declare abstract class SimpleBaseSelectComponent<T = any> extends SimpleBaseInpu
1136
1136
  * Applies typed metadata to the select component.
1137
1137
  */
1138
1138
  setSelectMetadata(metadata: SimpleSelectMetadata<T>): void;
1139
+ protected clearRemoteOptionSourceState(filterCriteria?: Record<string, any>): void;
1139
1140
  private scheduleRemoteOptionsLoad;
1140
1141
  protected setMetadata(metadata: ComponentMetadata): void;
1141
1142
  protected registerMatSelect(select: MatSelect): void;