@acorex/platform 21.0.0-next.40 → 21.0.0-next.41
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.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +115 -29
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-designer.mjs +59 -4
- package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +995 -545
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/{acorex-platform-layout-widgets-repeater-widget-column.component-BGQqY5Mw.mjs → acorex-platform-layout-widgets-repeater-widget-column.component-BGO75IMz.mjs} +9 -4
- package/fesm2022/acorex-platform-layout-widgets-repeater-widget-column.component-BGO75IMz.mjs.map +1 -0
- package/fesm2022/acorex-platform-layout-widgets.mjs +418 -106
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +2 -1
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/package.json +1 -1
- package/types/acorex-platform-common.d.ts +14 -10
- package/types/acorex-platform-layout-builder.d.ts +20 -2
- package/types/acorex-platform-layout-designer.d.ts +35 -3
- package/types/acorex-platform-layout-entity.d.ts +46 -5
- package/types/acorex-platform-layout-widget-core.d.ts +2 -5
- package/types/acorex-platform-layout-widgets.d.ts +108 -51
- package/fesm2022/acorex-platform-layout-widgets-repeater-widget-column.component-BGQqY5Mw.mjs.map +0 -1
|
@@ -1104,6 +1104,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
1104
1104
|
const ENGINE_BUILTIN_ACTIVITY_TYPES = new Set([
|
|
1105
1105
|
'workflow-activity:set-variable',
|
|
1106
1106
|
'workflow-activity:http-request',
|
|
1107
|
+
'workflow-activity:resolve-employee-user-id',
|
|
1107
1108
|
]);
|
|
1108
1109
|
//#endregion
|
|
1109
1110
|
/**
|
|
@@ -1168,7 +1169,7 @@ class ActivityExecutor {
|
|
|
1168
1169
|
outcome: 'Done'
|
|
1169
1170
|
};
|
|
1170
1171
|
}
|
|
1171
|
-
// Flatten properties if nested (
|
|
1172
|
+
// Flatten properties if nested (designer-style nested payload)
|
|
1172
1173
|
let commandInput = evaluatedInputs;
|
|
1173
1174
|
if (commandInput['properties'] && typeof commandInput['properties'] === 'object') {
|
|
1174
1175
|
// Flatten: {properties: {text: "..."}} -> {text: "..."}
|