- Simplified navigation structure by consolidating child routes for Process and Form Designers, improving clarity and accessibility. - Updated Form Builder and Process Builder header styles for a more modern look, including logo and title adjustments. - Enhanced button styles and layout in the Form Builder and Process Management pages for better user interaction. - Introduced new dashboard metrics and recent activity sections in Process Management, providing users with quick insights into their processes. - Improved overall responsiveness and visual consistency across the application.
82 lines
1.9 KiB
JavaScript
82 lines
1.9 KiB
JavaScript
export default [
|
|
{
|
|
header: "",
|
|
description: "",
|
|
child: [
|
|
{
|
|
title: "Dashboard",
|
|
path: "/dashboard",
|
|
icon: "material-symbols:dashboard",
|
|
child: [],
|
|
meta: {},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
header: "Design & Build",
|
|
description: "Create and design your workflows and forms",
|
|
child: [
|
|
{
|
|
title: "Form Designer",
|
|
icon: "material-symbols:dynamic-form",
|
|
path: "/form-builder/manage",
|
|
},
|
|
{
|
|
title: "Process Designer",
|
|
icon: "material-symbols:account-tree",
|
|
path: "/process-builder/manage",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
header: "Execute & Monitor",
|
|
description: "Run processes and track their progress",
|
|
child: [
|
|
{
|
|
title: "Process Execution",
|
|
icon: "material-symbols:play-circle",
|
|
child: [
|
|
{
|
|
title: "Execution Dashboard",
|
|
path: "/execution",
|
|
child: [],
|
|
meta: {
|
|
description: "Monitor active processes and performance metrics",
|
|
},
|
|
},
|
|
{
|
|
title: "Start New Process",
|
|
path: "/execution/new-case",
|
|
child: [],
|
|
meta: {
|
|
description: "Initiate a new process instance",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Task Management",
|
|
icon: "material-symbols:task",
|
|
child: [
|
|
{
|
|
title: "My Tasks",
|
|
path: "/execution/inbox",
|
|
child: [],
|
|
meta: {
|
|
description: "View and complete assigned tasks",
|
|
},
|
|
},
|
|
{
|
|
title: "Process History",
|
|
path: "/execution/history",
|
|
child: [],
|
|
meta: {
|
|
description: "Review completed processes and audit trails",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
];
|