@praxisui/dynamic-fields 9.0.4-rc.14 → 9.0.4-rc.16

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-08-03T16:18:47.808Z",
3
+ "generatedAt": "2026-08-03T17:53:06.824Z",
4
4
  "packageName": "@praxisui/dynamic-fields",
5
- "packageVersion": "9.0.4-rc.14",
5
+ "packageVersion": "9.0.4-rc.16",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 76,
@@ -28993,6 +28993,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
28993
28993
  class InlineAsyncSelectComponent extends MaterialAsyncSelectComponent {
28994
28994
  inlineMinWidthPx = 132;
28995
28995
  inlineMaxWidthPx = 360;
28996
+ isPanelOpen = signal(false, ...(ngDevMode ? [{ debugName: "isPanelOpen" }] : /* istanbul ignore next */ []));
28996
28997
  fieldLabelText = 'Filtro';
28997
28998
  staticOptions = [];
28998
28999
  currentMetadata() {
@@ -29072,6 +29073,7 @@ class InlineAsyncSelectComponent extends MaterialAsyncSelectComponent {
29072
29073
  this.onClearClick();
29073
29074
  }
29074
29075
  onOpenedChange(opened) {
29076
+ this.isPanelOpen.set(opened);
29075
29077
  if (!opened) {
29076
29078
  if (this.currentSearchTerm()) {
29077
29079
  const emitEvent = !!this.resourcePath();
@@ -29106,9 +29108,10 @@ class InlineAsyncSelectComponent extends MaterialAsyncSelectComponent {
29106
29108
  event.stopPropagation();
29107
29109
  }
29108
29110
  panelActionsVisible() {
29109
- return (this.showLoadMore() ||
29110
- (this.loading() && this.options().length > 0) ||
29111
- this.showEndReachedMessage());
29111
+ return (this.isPanelOpen() &&
29112
+ (this.showLoadMore() ||
29113
+ (this.loading() && this.options().length > 0) ||
29114
+ this.showEndReachedMessage()));
29112
29115
  }
29113
29116
  showEndReachedMessage() {
29114
29117
  return (!!this.resourcePath() && this.endReached() && this.options().length === 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/dynamic-fields",
3
- "version": "9.0.4-rc.14",
3
+ "version": "9.0.4-rc.16",
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.4-rc.14",
15
- "@praxisui/cron-builder": "^9.0.4-rc.14"
14
+ "@praxisui/core": "^9.0.4-rc.16",
15
+ "@praxisui/cron-builder": "^9.0.4-rc.16"
16
16
  },
17
17
  "dependencies": {
18
18
  "libphonenumber-js": "^1.12.41",
@@ -2847,6 +2847,7 @@ type InlineAsyncSelectMetadata = MaterialSelectMetadata & {
2847
2847
  declare class InlineAsyncSelectComponent extends MaterialAsyncSelectComponent {
2848
2848
  inlineMinWidthPx: number;
2849
2849
  inlineMaxWidthPx: number;
2850
+ readonly isPanelOpen: _angular_core.WritableSignal<boolean>;
2850
2851
  private fieldLabelText;
2851
2852
  private staticOptions;
2852
2853
  private currentMetadata;