@acorex/platform 21.0.0-next.3 → 21.0.0-next.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/auth/index.d.ts +6 -6
- package/common/index.d.ts +10 -5
- package/core/index.d.ts +55 -315
- package/fesm2022/acorex-platform-auth.mjs +18 -22
- package/fesm2022/acorex-platform-auth.mjs.map +1 -1
- package/fesm2022/acorex-platform-common.mjs +62 -38
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +150 -246
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +3 -3
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +30 -60
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +2 -32
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +12 -6
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +474 -1527
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/layout/entity/index.d.ts +0 -9
- package/layout/widget-core/index.d.ts +0 -3
- package/package.json +9 -9
- package/workflow/index.d.ts +182 -817
package/layout/entity/index.d.ts
CHANGED
|
@@ -718,8 +718,6 @@ interface AXPEntityDefinitionPreloader {
|
|
|
718
718
|
}
|
|
719
719
|
declare class AXPEntityDefinitionRegistryService {
|
|
720
720
|
private middleware;
|
|
721
|
-
private moduleProviderLoader;
|
|
722
|
-
private manifestRegistry;
|
|
723
721
|
private onChanged;
|
|
724
722
|
get onChanged$(): rxjs.Observable<{
|
|
725
723
|
name: string;
|
|
@@ -769,12 +767,6 @@ declare class AXPEntityDefinitionRegistryService {
|
|
|
769
767
|
*/
|
|
770
768
|
resolve(moduleName: string, entityName: string): Promise<AXPEntity>;
|
|
771
769
|
exists(moduleName: string, entityName: string): Promise<boolean>;
|
|
772
|
-
/**
|
|
773
|
-
* Waits for module provider to be loaded if the module exists in manifest but provider isn't registered yet.
|
|
774
|
-
* This handles race conditions where entity resolution happens before module providers finish loading.
|
|
775
|
-
* Only waits for required modules or waits briefly for non-required modules (which may not be accessible to current user).
|
|
776
|
-
*/
|
|
777
|
-
private waitForModuleProviderIfNeeded;
|
|
778
770
|
/**
|
|
779
771
|
* Creates a unique key for an entity based on its module and name.
|
|
780
772
|
*
|
|
@@ -918,7 +910,6 @@ interface AXPEntityDefinitionLoader {
|
|
|
918
910
|
declare const AXP_ENTITY_DEFINITION_LOADER: InjectionToken<AXPEntityDefinitionLoader>;
|
|
919
911
|
declare class AXPEntityResolver {
|
|
920
912
|
private providers;
|
|
921
|
-
private providerRegistry;
|
|
922
913
|
get(moduleName: string, entityName: string): Promise<AXPEntity | null>;
|
|
923
914
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPEntityResolver, never>;
|
|
924
915
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPEntityResolver>;
|
|
@@ -289,7 +289,6 @@ interface AXPWidgetNode {
|
|
|
289
289
|
name?: string;
|
|
290
290
|
visible?: boolean | AXPExpression;
|
|
291
291
|
defaultValue?: any;
|
|
292
|
-
formula?: string;
|
|
293
292
|
children?: AXPWidgetNode[];
|
|
294
293
|
options?: AXPOptionsData;
|
|
295
294
|
triggers?: AXPWidgetTriggers;
|
|
@@ -932,10 +931,8 @@ declare class AXPWidgetRendererDirective {
|
|
|
932
931
|
private loadComponent;
|
|
933
932
|
private applyOptions;
|
|
934
933
|
private hasOptionsChanged;
|
|
935
|
-
private checkFormulaForUpdate;
|
|
936
934
|
preprocessAndInitialOptions(obj: any, pathPrefix?: string): void;
|
|
937
935
|
updateOptionsBasedOnContext(): Promise<number>;
|
|
938
|
-
updateValueBasedOnFormula(): Promise<void>;
|
|
939
936
|
updateVisibility(): Promise<void>;
|
|
940
937
|
private show;
|
|
941
938
|
private hide;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "21.0.0-next.
|
|
3
|
+
"version": "21.0.0-next.5",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@acorex/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",
|
|
6
6
|
"@acorex/core": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",
|
|
@@ -27,14 +27,6 @@
|
|
|
27
27
|
"types": "./index.d.ts",
|
|
28
28
|
"default": "./fesm2022/acorex-platform.mjs"
|
|
29
29
|
},
|
|
30
|
-
"./auth": {
|
|
31
|
-
"types": "./auth/index.d.ts",
|
|
32
|
-
"default": "./fesm2022/acorex-platform-auth.mjs"
|
|
33
|
-
},
|
|
34
|
-
"./common": {
|
|
35
|
-
"types": "./common/index.d.ts",
|
|
36
|
-
"default": "./fesm2022/acorex-platform-common.mjs"
|
|
37
|
-
},
|
|
38
30
|
"./core": {
|
|
39
31
|
"types": "./core/index.d.ts",
|
|
40
32
|
"default": "./fesm2022/acorex-platform-core.mjs"
|
|
@@ -43,6 +35,10 @@
|
|
|
43
35
|
"types": "./domain/index.d.ts",
|
|
44
36
|
"default": "./fesm2022/acorex-platform-domain.mjs"
|
|
45
37
|
},
|
|
38
|
+
"./common": {
|
|
39
|
+
"types": "./common/index.d.ts",
|
|
40
|
+
"default": "./fesm2022/acorex-platform-common.mjs"
|
|
41
|
+
},
|
|
46
42
|
"./native": {
|
|
47
43
|
"types": "./native/index.d.ts",
|
|
48
44
|
"default": "./fesm2022/acorex-platform-native.mjs"
|
|
@@ -55,6 +51,10 @@
|
|
|
55
51
|
"types": "./workflow/index.d.ts",
|
|
56
52
|
"default": "./fesm2022/acorex-platform-workflow.mjs"
|
|
57
53
|
},
|
|
54
|
+
"./auth": {
|
|
55
|
+
"types": "./auth/index.d.ts",
|
|
56
|
+
"default": "./fesm2022/acorex-platform-auth.mjs"
|
|
57
|
+
},
|
|
58
58
|
"./layout/builder": {
|
|
59
59
|
"types": "./layout/builder/index.d.ts",
|
|
60
60
|
"default": "./fesm2022/acorex-platform-layout-builder.mjs"
|