@acorex/platform 21.0.0-next.73 → 21.0.0-next.74
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/fesm2022/acorex-platform-common.mjs +403 -17
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-contracts.mjs +28 -0
- package/fesm2022/acorex-platform-contracts.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +8 -2
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +2 -4
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +2 -1
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +17 -70
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +2 -1
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +226 -218
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +0 -14
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/package.json +1 -1
- package/types/acorex-platform-common.d.ts +83 -257
- package/types/acorex-platform-contracts.d.ts +902 -1
- package/types/acorex-platform-layout-builder.d.ts +2 -5
- package/types/acorex-platform-layout-widget-core.d.ts +1 -25
- package/types/acorex-platform-layout-widgets.d.ts +16 -13
- package/types/acorex-platform-workflow.d.ts +3 -670
|
@@ -415,18 +415,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
415
415
|
}]
|
|
416
416
|
}] });
|
|
417
417
|
|
|
418
|
-
// ============================================
|
|
419
|
-
// WORKFLOW INSTANCE v3.0.0 TYPES
|
|
420
|
-
// Based on Elsa Workflow Instance schema: https://elsaworkflows.io/schemas/workflow-instance/v3.0.0/schema.json
|
|
421
|
-
// Compatible with Elsa backend while using ACoreX naming conventions
|
|
422
|
-
// ============================================
|
|
423
|
-
|
|
424
|
-
// Note:
|
|
425
|
-
// Previous versions defined dedicated activity result/command types here
|
|
426
|
-
// (AXPActivityResult / AXPActivity) that wrapped output and outcome.
|
|
427
|
-
// Activities are now modeled directly as AXPCommand with outcome stored in
|
|
428
|
-
// AXPExecuteCommandResult.metadata.outcome.
|
|
429
|
-
|
|
430
418
|
const AXP_ACTIVITY_PROVIDER = new InjectionToken('AXP_ACTIVITY_PROVIDER', {
|
|
431
419
|
factory: () => [],
|
|
432
420
|
});
|
|
@@ -2702,8 +2690,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
2702
2690
|
}]
|
|
2703
2691
|
}] });
|
|
2704
2692
|
|
|
2705
|
-
// Workflow Instance Types (Storage/Database)
|
|
2706
|
-
|
|
2707
2693
|
class AXPWorkflowModule {
|
|
2708
2694
|
static forRoot(config) {
|
|
2709
2695
|
return {
|