@acorex/platform 20.9.16 → 20.9.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/platform",
3
- "version": "20.9.16",
3
+ "version": "20.9.18",
4
4
  "peerDependencies": {
5
5
  "@acorex/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0 || ^21.0.3-next.0",
6
6
  "@acorex/core": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0 || ^21.0.3-next.0",
@@ -16,7 +16,7 @@ import { AXDropListDroppedEvent } from '@acorex/cdk/drag-drop';
16
16
  import { AXTagBoxComponent } from '@acorex/components/tag-box';
17
17
  import { AXCalendarService } from '@acorex/core/date-time';
18
18
  import { AXTranslationService } from '@acorex/core/translation';
19
- import { AXPWidgetRendererDirective } from '@acorex/platform/layout/widget-core';
19
+ import { AXPWidgetContainerComponent, AXPWidgetRendererDirective } from '@acorex/platform/layout/widget-core';
20
20
  import { AXFormComponent } from '@acorex/components/form';
21
21
  import { AXPWidgetProperty, AXPWidgetConfig } from '@acorex/platform/layout/widget-core-contracts';
22
22
  import { AXSelectBoxComponent } from '@acorex/components/select-box';
@@ -993,6 +993,7 @@ declare class AXPQueryFiltersComponent {
993
993
  onFiltersChanged: _angular_core.OutputEmitterRef<AXPFilterQuery[]>;
994
994
  protected dateFormat: _angular_core.WritableSignal<string>;
995
995
  protected tagBox: _angular_core.Signal<AXTagBoxComponent | undefined>;
996
+ protected widgetsContainer: _angular_core.Signal<AXPWidgetContainerComponent | undefined>;
996
997
  protected widgetRenderer: _angular_core.Signal<AXPWidgetRendererDirective | undefined>;
997
998
  tagBoxInput: any;
998
999
  listItems: QueryList<any>;
@@ -1053,6 +1054,17 @@ declare class AXPQueryFiltersComponent {
1053
1054
  */
1054
1055
  private formatFilterDisplayValue;
1055
1056
  private translateLabel;
1057
+ /**
1058
+ * Clears stale widget-store state when adding a filter from the advance list.
1059
+ */
1060
+ private prepareNewFilterContext;
1061
+ /**
1062
+ * Forces the widgets container to accept external filter context (bypasses dirty sync guard).
1063
+ * Does not await widget settle — safe before the filter widget is mounted.
1064
+ */
1065
+ private syncWidgetsContainerContext;
1066
+ /** Live context from the widgets container (source of truth while a filter widget is open). */
1067
+ private getWidgetsContext;
1056
1068
  private captureEditingContextSnapshot;
1057
1069
  private restoreEditingContextSnapshot;
1058
1070
  /**