@smartbit4all/ng-client 7.0.4 → 7.0.5

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": "@smartbit4all/ng-client",
3
- "version": "7.0.4",
3
+ "version": "7.0.5",
4
4
  "description": "Angular client library for the smartbit4all platform — a server-driven UI framework that renders views, pages, forms, grids, trees and dialogs from backend (ViewApi/PageApi) definitions. Provides reactive view-context state management, dynamic component layouts and OpenAPI-generated BFF clients.",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
Binary file
@@ -8282,6 +8282,11 @@ declare abstract class SmartComponentApiClient<T> implements UiActionExecutor {
8282
8282
  protected element?: ElementRef | undefined;
8283
8283
  protected renderer?: Renderer2 | undefined;
8284
8284
  protected _destroy$: Subject$1<void>;
8285
+ /**
8286
+ * The in-flight {@link run}, so the two run() calls of a mount share one load.
8287
+ * Keyed by uuid: view reuse sets a new uuid, and must not join the stale run.
8288
+ */
8289
+ private runInFlight;
8285
8290
  private detectChange;
8286
8291
  private readonly uuidState;
8287
8292
  private readonly modelState;
@@ -8367,6 +8372,7 @@ declare abstract class SmartComponentApiClient<T> implements UiActionExecutor {
8367
8372
  */
8368
8373
  initActions(): void;
8369
8374
  run(): Promise<void>;
8375
+ private doRun;
8370
8376
  load(): Promise<void>;
8371
8377
  executeUiAction(uiAction: UiAction, options?: ExecuteUiActionOptions): Promise<void>;
8372
8378
  addDataChangeActionHandler(key: string, valueChangeMode: ValueChangeMode): void;
Binary file