@acorex/platform 21.0.0-next.16 → 21.0.0-next.17
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/common/index.d.ts +10 -1
- package/core/index.d.ts +1 -1
- package/fesm2022/{acorex-platform-common-common-settings.provider-BwBLG0Hl.mjs → acorex-platform-common-common-settings.provider-gyb6ohAE.mjs} +15 -1
- package/fesm2022/acorex-platform-common-common-settings.provider-gyb6ohAE.mjs.map +1 -0
- package/fesm2022/acorex-platform-common.mjs +3 -2
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +10 -6
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-domain.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +292 -33
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +2 -2
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/{acorex-platform-layout-widgets-file-list-popup.component-zkvCqKp9.mjs → acorex-platform-layout-widgets-file-list-popup.component-DmIanCrO.mjs} +12 -3
- package/fesm2022/acorex-platform-layout-widgets-file-list-popup.component-DmIanCrO.mjs.map +1 -0
- package/fesm2022/acorex-platform-layout-widgets.mjs +70 -20
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +0 -2
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/layout/entity/index.d.ts +8 -0
- package/layout/widgets/index.d.ts +21 -1
- package/package.json +1 -1
- package/workflow/index.d.ts +33 -30
- package/fesm2022/acorex-platform-common-common-settings.provider-BwBLG0Hl.mjs.map +0 -1
- package/fesm2022/acorex-platform-layout-widgets-file-list-popup.component-zkvCqKp9.mjs.map +0 -1
|
@@ -953,7 +953,6 @@ class WorkflowExpressionScopeService {
|
|
|
953
953
|
* @returns Expression evaluator scope with workflow data and context.eval() function
|
|
954
954
|
*/
|
|
955
955
|
buildScopeFromState(state, activityOutputs) {
|
|
956
|
-
debugger;
|
|
957
956
|
// Convert activity outputs to record format
|
|
958
957
|
const outputs = {};
|
|
959
958
|
if (activityOutputs) {
|
|
@@ -1740,7 +1739,6 @@ class AXPWorkflowLocalEngine {
|
|
|
1740
1739
|
activityName: activityTitle || undefined,
|
|
1741
1740
|
executionMode: executionMode,
|
|
1742
1741
|
input: activity.inputs || {}, // Pass raw inputs - executor will evaluate
|
|
1743
|
-
config: activity.customProperties || {},
|
|
1744
1742
|
};
|
|
1745
1743
|
// Store task token for secure resume
|
|
1746
1744
|
this.taskTokens.set(task.taskToken, {
|