@smartbit4all/ng-client 7.0.4 → 7.0.6
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/MIGRATION-7.0.md +1722 -1722
- package/README.md +199 -199
- package/WIDGETS.md +206 -206
- package/fesm2022/smartbit4all-ng-client.mjs +163 -145
- package/fesm2022/smartbit4all-ng-client.mjs.map +1 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-7.0.6.tgz +0 -0
- package/types/smartbit4all-ng-client.d.ts +6 -0
- package/smartbit4all-ng-client-7.0.4.tgz +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartbit4all/ng-client",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.6",
|
|
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
|