@almadar/std 14.5.1 → 14.6.0
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/behaviors/registry/agent/organisms/std-agent-assistant.orb +1077 -1077
- package/behaviors/registry/agent/organisms/std-agent-builder.orb +3053 -3053
- package/behaviors/registry/agent/organisms/std-agent-pipeline.orb +2159 -2159
- package/behaviors/registry/agent/organisms/std-agent-reviewer.orb +931 -931
- package/behaviors/registry/agent/organisms/std-agent-tutor.orb +793 -793
- package/behaviors/registry/app/organisms/std-api-gateway.orb +819 -819
- package/behaviors/registry/app/organisms/std-booking-system.orb +1168 -1168
- package/behaviors/registry/app/organisms/std-cicd-pipeline.orb +825 -825
- package/behaviors/registry/app/organisms/std-cms.orb +556 -556
- package/behaviors/registry/app/organisms/std-coding-academy.orb +353 -353
- package/behaviors/registry/app/organisms/std-crm.orb +806 -806
- package/behaviors/registry/app/organisms/std-devops-dashboard.orb +1209 -1209
- package/behaviors/registry/app/organisms/std-ecommerce.orb +742 -742
- package/behaviors/registry/app/organisms/std-finance-tracker.orb +626 -626
- package/behaviors/registry/app/organisms/std-healthcare.orb +1390 -1390
- package/behaviors/registry/app/organisms/std-helpdesk.orb +720 -720
- package/behaviors/registry/app/organisms/std-hr-portal.orb +1189 -1189
- package/behaviors/registry/app/organisms/std-iot-dashboard.orb +786 -786
- package/behaviors/registry/app/organisms/std-lms.orb +860 -860
- package/behaviors/registry/app/organisms/std-project-manager.orb +668 -668
- package/behaviors/registry/app/organisms/std-realtime-chat.orb +725 -725
- package/behaviors/registry/app/organisms/std-social-feed.orb +227 -227
- package/behaviors/registry/app/organisms/std-trading-dashboard.orb +646 -646
- package/behaviors/registry/service/organisms/std-service-marketplace.orb +973 -973
- package/behaviors/registry/service/organisms/std-service-research-assistant.orb +898 -898
- package/dist/behaviors/registry/agent/organisms/std-agent-assistant.orb +1077 -1077
- package/dist/behaviors/registry/agent/organisms/std-agent-builder.orb +3053 -3053
- package/dist/behaviors/registry/agent/organisms/std-agent-pipeline.orb +2159 -2159
- package/dist/behaviors/registry/agent/organisms/std-agent-reviewer.orb +931 -931
- package/dist/behaviors/registry/agent/organisms/std-agent-tutor.orb +793 -793
- package/dist/behaviors/registry/app/organisms/std-api-gateway.orb +819 -819
- package/dist/behaviors/registry/app/organisms/std-booking-system.orb +1168 -1168
- package/dist/behaviors/registry/app/organisms/std-cicd-pipeline.orb +825 -825
- package/dist/behaviors/registry/app/organisms/std-cms.orb +556 -556
- package/dist/behaviors/registry/app/organisms/std-coding-academy.orb +353 -353
- package/dist/behaviors/registry/app/organisms/std-crm.orb +806 -806
- package/dist/behaviors/registry/app/organisms/std-devops-dashboard.orb +1209 -1209
- package/dist/behaviors/registry/app/organisms/std-ecommerce.orb +742 -742
- package/dist/behaviors/registry/app/organisms/std-finance-tracker.orb +626 -626
- package/dist/behaviors/registry/app/organisms/std-healthcare.orb +1390 -1390
- package/dist/behaviors/registry/app/organisms/std-helpdesk.orb +720 -720
- package/dist/behaviors/registry/app/organisms/std-hr-portal.orb +1189 -1189
- package/dist/behaviors/registry/app/organisms/std-iot-dashboard.orb +786 -786
- package/dist/behaviors/registry/app/organisms/std-lms.orb +860 -860
- package/dist/behaviors/registry/app/organisms/std-project-manager.orb +668 -668
- package/dist/behaviors/registry/app/organisms/std-realtime-chat.orb +725 -725
- package/dist/behaviors/registry/app/organisms/std-social-feed.orb +227 -227
- package/dist/behaviors/registry/app/organisms/std-trading-dashboard.orb +646 -646
- package/dist/behaviors/registry/service/organisms/std-service-marketplace.orb +973 -973
- package/dist/behaviors/registry/service/organisms/std-service-research-assistant.orb +898 -898
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-project-manager",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "Project manager: tasks, sprints, and burndown. Pick for agile/scrum-style PM tools.",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "TaskOrbital",
|
|
@@ -77,7 +77,10 @@
|
|
|
77
77
|
"ref": "AppShell.traits.AppLayout",
|
|
78
78
|
"name": "TaskAppLayout",
|
|
79
79
|
"config": {
|
|
80
|
-
"
|
|
80
|
+
"searchEvent": "TASK_SEARCH",
|
|
81
|
+
"notificationClickEvent": "TASK_NOTIFICATIONS_OPEN",
|
|
82
|
+
"appName": "ProjectManagerApp",
|
|
83
|
+
"notifications": [],
|
|
81
84
|
"navItems": [
|
|
82
85
|
{
|
|
83
86
|
"icon": "check-square",
|
|
@@ -90,19 +93,16 @@
|
|
|
90
93
|
"href": "/sprints"
|
|
91
94
|
},
|
|
92
95
|
{
|
|
96
|
+
"icon": "layout-list",
|
|
93
97
|
"label": "Burndown",
|
|
94
|
-
"href": "/burndown"
|
|
95
|
-
"icon": "layout-list"
|
|
98
|
+
"href": "/burndown"
|
|
96
99
|
}
|
|
97
100
|
],
|
|
98
|
-
"
|
|
99
|
-
"searchEvent": "TASK_SEARCH",
|
|
100
|
-
"notifications": [],
|
|
101
|
-
"notificationClickEvent": "TASK_NOTIFICATIONS_OPEN"
|
|
101
|
+
"contentTrait": "@trait.TaskBrowse"
|
|
102
102
|
},
|
|
103
103
|
"events": {
|
|
104
|
-
"
|
|
105
|
-
"
|
|
104
|
+
"NOTIFY_CLICK": "TASK_NOTIFICATIONS_OPEN",
|
|
105
|
+
"SEARCH": "TASK_SEARCH"
|
|
106
106
|
}
|
|
107
107
|
},
|
|
108
108
|
{
|
|
@@ -740,8 +740,8 @@
|
|
|
740
740
|
"Task",
|
|
741
741
|
{
|
|
742
742
|
"emit": {
|
|
743
|
-
"
|
|
744
|
-
"
|
|
743
|
+
"success": "TaskLoaded",
|
|
744
|
+
"failure": "TaskLoadFailed"
|
|
745
745
|
}
|
|
746
746
|
}
|
|
747
747
|
],
|
|
@@ -750,7 +750,7 @@
|
|
|
750
750
|
"main",
|
|
751
751
|
{
|
|
752
752
|
"direction": "vertical",
|
|
753
|
-
"
|
|
753
|
+
"align": "center",
|
|
754
754
|
"className": "py-12",
|
|
755
755
|
"type": "stack",
|
|
756
756
|
"children": [
|
|
@@ -764,7 +764,7 @@
|
|
|
764
764
|
"content": "Loading…"
|
|
765
765
|
}
|
|
766
766
|
],
|
|
767
|
-
"
|
|
767
|
+
"gap": "md"
|
|
768
768
|
}
|
|
769
769
|
]
|
|
770
770
|
]
|
|
@@ -778,87 +778,87 @@
|
|
|
778
778
|
"render-ui",
|
|
779
779
|
"main",
|
|
780
780
|
{
|
|
781
|
-
"
|
|
782
|
-
"direction": "vertical",
|
|
781
|
+
"type": "stack",
|
|
783
782
|
"className": "max-w-5xl mx-auto w-full",
|
|
784
783
|
"children": [
|
|
785
784
|
{
|
|
785
|
+
"type": "stack",
|
|
786
786
|
"gap": "md",
|
|
787
787
|
"direction": "horizontal",
|
|
788
788
|
"justify": "between",
|
|
789
|
-
"align": "center",
|
|
790
789
|
"children": [
|
|
791
790
|
{
|
|
791
|
+
"type": "stack",
|
|
792
|
+
"direction": "horizontal",
|
|
793
|
+
"align": "center",
|
|
794
|
+
"gap": "sm",
|
|
792
795
|
"children": [
|
|
793
796
|
{
|
|
794
|
-
"
|
|
795
|
-
"
|
|
797
|
+
"name": "check-square",
|
|
798
|
+
"type": "icon"
|
|
796
799
|
},
|
|
797
800
|
{
|
|
801
|
+
"variant": "h2",
|
|
798
802
|
"type": "typography",
|
|
799
|
-
"content": "Tasks"
|
|
800
|
-
"variant": "h2"
|
|
803
|
+
"content": "Tasks"
|
|
801
804
|
}
|
|
802
|
-
]
|
|
803
|
-
"type": "stack",
|
|
804
|
-
"align": "center",
|
|
805
|
-
"direction": "horizontal",
|
|
806
|
-
"gap": "sm"
|
|
805
|
+
]
|
|
807
806
|
},
|
|
808
807
|
{
|
|
809
808
|
"gap": "sm",
|
|
809
|
+
"direction": "horizontal",
|
|
810
810
|
"type": "stack",
|
|
811
811
|
"children": [
|
|
812
812
|
{
|
|
813
|
-
"variant": "primary",
|
|
814
|
-
"type": "button",
|
|
815
|
-
"icon": "plus",
|
|
816
813
|
"label": "Create Task",
|
|
817
|
-
"
|
|
814
|
+
"icon": "plus",
|
|
815
|
+
"action": "CREATE",
|
|
816
|
+
"variant": "primary",
|
|
817
|
+
"type": "button"
|
|
818
818
|
}
|
|
819
|
-
]
|
|
820
|
-
"direction": "horizontal"
|
|
819
|
+
]
|
|
821
820
|
}
|
|
822
821
|
],
|
|
823
|
-
"
|
|
822
|
+
"align": "center"
|
|
824
823
|
},
|
|
825
824
|
{
|
|
826
825
|
"type": "divider"
|
|
827
826
|
},
|
|
828
827
|
{
|
|
829
|
-
"type": "simple-grid",
|
|
830
828
|
"cols": 1.0,
|
|
831
829
|
"children": [
|
|
832
830
|
{
|
|
833
|
-
"icon": "check-square",
|
|
834
831
|
"value": "@payload.data.length",
|
|
835
832
|
"type": "stat-display",
|
|
836
|
-
"label": "Total Tasks"
|
|
833
|
+
"label": "Total Tasks",
|
|
834
|
+
"icon": "check-square"
|
|
837
835
|
}
|
|
838
|
-
]
|
|
836
|
+
],
|
|
837
|
+
"type": "simple-grid"
|
|
839
838
|
},
|
|
840
839
|
{
|
|
841
840
|
"type": "divider"
|
|
842
841
|
},
|
|
843
842
|
{
|
|
844
843
|
"type": "data-grid",
|
|
844
|
+
"cols": 2.0,
|
|
845
845
|
"fields": [
|
|
846
846
|
{
|
|
847
|
-
"
|
|
847
|
+
"name": "title",
|
|
848
848
|
"variant": "h3",
|
|
849
|
-
"
|
|
849
|
+
"icon": "check-square"
|
|
850
850
|
},
|
|
851
851
|
{
|
|
852
852
|
"name": "priority",
|
|
853
853
|
"variant": "badge"
|
|
854
854
|
},
|
|
855
855
|
{
|
|
856
|
-
"
|
|
857
|
-
"
|
|
856
|
+
"variant": "badge",
|
|
857
|
+
"name": "status"
|
|
858
858
|
},
|
|
859
859
|
{
|
|
860
|
-
"
|
|
861
|
-
"
|
|
860
|
+
"name": "assignee",
|
|
861
|
+
"variant": "body"
|
|
862
862
|
},
|
|
863
863
|
{
|
|
864
864
|
"label": "Points",
|
|
@@ -867,19 +867,17 @@
|
|
|
867
867
|
"format": "number"
|
|
868
868
|
},
|
|
869
869
|
{
|
|
870
|
-
"
|
|
870
|
+
"variant": "caption",
|
|
871
871
|
"name": "dueDate",
|
|
872
872
|
"label": "Due",
|
|
873
|
-
"
|
|
873
|
+
"format": "date"
|
|
874
874
|
}
|
|
875
875
|
],
|
|
876
|
-
"gap": "md",
|
|
877
|
-
"entity": "@payload.data",
|
|
878
876
|
"itemActions": [
|
|
879
877
|
{
|
|
880
|
-
"
|
|
878
|
+
"variant": "ghost",
|
|
881
879
|
"event": "VIEW",
|
|
882
|
-
"
|
|
880
|
+
"label": "View"
|
|
883
881
|
},
|
|
884
882
|
{
|
|
885
883
|
"variant": "ghost",
|
|
@@ -892,10 +890,12 @@
|
|
|
892
890
|
"variant": "danger"
|
|
893
891
|
}
|
|
894
892
|
],
|
|
895
|
-
"
|
|
893
|
+
"gap": "md",
|
|
894
|
+
"entity": "@payload.data"
|
|
896
895
|
}
|
|
897
896
|
],
|
|
898
|
-
"
|
|
897
|
+
"direction": "vertical",
|
|
898
|
+
"gap": "lg"
|
|
899
899
|
}
|
|
900
900
|
]
|
|
901
901
|
]
|
|
@@ -910,8 +910,8 @@
|
|
|
910
910
|
"Task",
|
|
911
911
|
{
|
|
912
912
|
"emit": {
|
|
913
|
-
"
|
|
914
|
-
"
|
|
913
|
+
"failure": "TaskLoadFailed",
|
|
914
|
+
"success": "TaskLoaded"
|
|
915
915
|
}
|
|
916
916
|
}
|
|
917
917
|
],
|
|
@@ -919,22 +919,22 @@
|
|
|
919
919
|
"render-ui",
|
|
920
920
|
"main",
|
|
921
921
|
{
|
|
922
|
-
"align": "center",
|
|
923
|
-
"type": "stack",
|
|
924
|
-
"gap": "md",
|
|
925
|
-
"direction": "vertical",
|
|
926
|
-
"className": "py-12",
|
|
927
922
|
"children": [
|
|
928
923
|
{
|
|
929
924
|
"type": "spinner"
|
|
930
925
|
},
|
|
931
926
|
{
|
|
932
|
-
"content": "Searching…",
|
|
933
|
-
"type": "typography",
|
|
934
927
|
"variant": "caption",
|
|
935
|
-
"
|
|
928
|
+
"content": "Searching…",
|
|
929
|
+
"color": "muted",
|
|
930
|
+
"type": "typography"
|
|
936
931
|
}
|
|
937
|
-
]
|
|
932
|
+
],
|
|
933
|
+
"type": "stack",
|
|
934
|
+
"className": "py-12",
|
|
935
|
+
"gap": "md",
|
|
936
|
+
"align": "center",
|
|
937
|
+
"direction": "vertical"
|
|
938
938
|
}
|
|
939
939
|
]
|
|
940
940
|
]
|
|
@@ -951,31 +951,31 @@
|
|
|
951
951
|
"gap": "md",
|
|
952
952
|
"align": "center",
|
|
953
953
|
"className": "py-8",
|
|
954
|
-
"direction": "vertical",
|
|
955
|
-
"type": "stack",
|
|
956
954
|
"children": [
|
|
957
955
|
{
|
|
958
956
|
"type": "icon",
|
|
959
957
|
"name": "bell"
|
|
960
958
|
},
|
|
961
959
|
{
|
|
962
|
-
"content": "No notifications",
|
|
963
960
|
"type": "typography",
|
|
961
|
+
"content": "No notifications",
|
|
964
962
|
"variant": "h3"
|
|
965
963
|
},
|
|
966
964
|
{
|
|
967
|
-
"variant": "caption",
|
|
968
965
|
"type": "typography",
|
|
969
966
|
"content": "You're all caught up.",
|
|
970
|
-
"color": "muted"
|
|
967
|
+
"color": "muted",
|
|
968
|
+
"variant": "caption"
|
|
971
969
|
},
|
|
972
970
|
{
|
|
971
|
+
"variant": "ghost",
|
|
973
972
|
"type": "button",
|
|
974
973
|
"label": "Back to tasks",
|
|
975
|
-
"action": "INIT"
|
|
976
|
-
"variant": "ghost"
|
|
974
|
+
"action": "INIT"
|
|
977
975
|
}
|
|
978
|
-
]
|
|
976
|
+
],
|
|
977
|
+
"type": "stack",
|
|
978
|
+
"direction": "vertical"
|
|
979
979
|
}
|
|
980
980
|
]
|
|
981
981
|
]
|
|
@@ -989,36 +989,36 @@
|
|
|
989
989
|
"render-ui",
|
|
990
990
|
"main",
|
|
991
991
|
{
|
|
992
|
-
"align": "center",
|
|
993
|
-
"type": "stack",
|
|
994
992
|
"gap": "md",
|
|
995
|
-
"
|
|
993
|
+
"align": "center",
|
|
996
994
|
"className": "py-12",
|
|
995
|
+
"direction": "vertical",
|
|
997
996
|
"children": [
|
|
998
997
|
{
|
|
998
|
+
"color": "destructive",
|
|
999
999
|
"type": "icon",
|
|
1000
|
-
"name": "alert-triangle"
|
|
1001
|
-
"color": "destructive"
|
|
1000
|
+
"name": "alert-triangle"
|
|
1002
1001
|
},
|
|
1003
1002
|
{
|
|
1004
|
-
"content": "Failed to load task",
|
|
1005
1003
|
"variant": "h3",
|
|
1006
|
-
"type": "typography"
|
|
1004
|
+
"type": "typography",
|
|
1005
|
+
"content": "Failed to load task"
|
|
1007
1006
|
},
|
|
1008
1007
|
{
|
|
1009
1008
|
"type": "typography",
|
|
1010
|
-
"variant": "body",
|
|
1011
1009
|
"content": "@payload.error",
|
|
1012
|
-
"color": "muted"
|
|
1010
|
+
"color": "muted",
|
|
1011
|
+
"variant": "body"
|
|
1013
1012
|
},
|
|
1014
1013
|
{
|
|
1015
1014
|
"icon": "rotate-ccw",
|
|
1016
|
-
"variant": "primary",
|
|
1017
1015
|
"type": "button",
|
|
1016
|
+
"label": "Retry",
|
|
1018
1017
|
"action": "INIT",
|
|
1019
|
-
"
|
|
1018
|
+
"variant": "primary"
|
|
1020
1019
|
}
|
|
1021
|
-
]
|
|
1020
|
+
],
|
|
1021
|
+
"type": "stack"
|
|
1022
1022
|
}
|
|
1023
1023
|
]
|
|
1024
1024
|
]
|
|
@@ -1218,8 +1218,8 @@
|
|
|
1218
1218
|
"Task",
|
|
1219
1219
|
{
|
|
1220
1220
|
"emit": {
|
|
1221
|
-
"
|
|
1222
|
-
"
|
|
1221
|
+
"success": "TaskLoaded",
|
|
1222
|
+
"failure": "TaskLoadFailed"
|
|
1223
1223
|
}
|
|
1224
1224
|
}
|
|
1225
1225
|
],
|
|
@@ -1227,6 +1227,9 @@
|
|
|
1227
1227
|
"render-ui",
|
|
1228
1228
|
"modal",
|
|
1229
1229
|
{
|
|
1230
|
+
"direction": "vertical",
|
|
1231
|
+
"type": "stack",
|
|
1232
|
+
"gap": "md",
|
|
1230
1233
|
"children": [
|
|
1231
1234
|
{
|
|
1232
1235
|
"gap": "sm",
|
|
@@ -1234,13 +1237,13 @@
|
|
|
1234
1237
|
"direction": "horizontal",
|
|
1235
1238
|
"children": [
|
|
1236
1239
|
{
|
|
1237
|
-
"
|
|
1238
|
-
"
|
|
1240
|
+
"name": "plus-circle",
|
|
1241
|
+
"type": "icon"
|
|
1239
1242
|
},
|
|
1240
1243
|
{
|
|
1241
|
-
"
|
|
1244
|
+
"type": "typography",
|
|
1242
1245
|
"variant": "h3",
|
|
1243
|
-
"
|
|
1246
|
+
"content": "Create Task"
|
|
1244
1247
|
}
|
|
1245
1248
|
]
|
|
1246
1249
|
},
|
|
@@ -1248,10 +1251,10 @@
|
|
|
1248
1251
|
"type": "divider"
|
|
1249
1252
|
},
|
|
1250
1253
|
{
|
|
1251
|
-
"cancelEvent": "CLOSE",
|
|
1252
1254
|
"mode": "create",
|
|
1253
1255
|
"type": "form-section",
|
|
1254
1256
|
"submitEvent": "SAVE",
|
|
1257
|
+
"cancelEvent": "CLOSE",
|
|
1255
1258
|
"fields": [
|
|
1256
1259
|
"title",
|
|
1257
1260
|
"description",
|
|
@@ -1262,10 +1265,7 @@
|
|
|
1262
1265
|
"dueDate"
|
|
1263
1266
|
]
|
|
1264
1267
|
}
|
|
1265
|
-
]
|
|
1266
|
-
"direction": "vertical",
|
|
1267
|
-
"gap": "md",
|
|
1268
|
-
"type": "stack"
|
|
1268
|
+
]
|
|
1269
1269
|
}
|
|
1270
1270
|
]
|
|
1271
1271
|
]
|
|
@@ -1543,8 +1543,8 @@
|
|
|
1543
1543
|
"Task",
|
|
1544
1544
|
{
|
|
1545
1545
|
"emit": {
|
|
1546
|
-
"
|
|
1547
|
-
"
|
|
1546
|
+
"success": "TaskLoaded",
|
|
1547
|
+
"failure": "TaskLoadFailed"
|
|
1548
1548
|
},
|
|
1549
1549
|
"id": "@payload.id"
|
|
1550
1550
|
}
|
|
@@ -1553,12 +1553,8 @@
|
|
|
1553
1553
|
"render-ui",
|
|
1554
1554
|
"modal",
|
|
1555
1555
|
{
|
|
1556
|
-
"direction": "vertical",
|
|
1557
|
-
"type": "stack",
|
|
1558
|
-
"gap": "md",
|
|
1559
1556
|
"children": [
|
|
1560
1557
|
{
|
|
1561
|
-
"type": "stack",
|
|
1562
1558
|
"direction": "horizontal",
|
|
1563
1559
|
"children": [
|
|
1564
1560
|
{
|
|
@@ -1567,16 +1563,21 @@
|
|
|
1567
1563
|
},
|
|
1568
1564
|
{
|
|
1569
1565
|
"type": "typography",
|
|
1570
|
-
"
|
|
1571
|
-
"
|
|
1566
|
+
"variant": "h3",
|
|
1567
|
+
"content": "Edit Task"
|
|
1572
1568
|
}
|
|
1573
1569
|
],
|
|
1570
|
+
"type": "stack",
|
|
1574
1571
|
"gap": "sm"
|
|
1575
1572
|
},
|
|
1576
1573
|
{
|
|
1577
1574
|
"type": "divider"
|
|
1578
1575
|
},
|
|
1579
1576
|
{
|
|
1577
|
+
"type": "form-section",
|
|
1578
|
+
"mode": "edit",
|
|
1579
|
+
"cancelEvent": "CLOSE",
|
|
1580
|
+
"entity": "@payload.row",
|
|
1580
1581
|
"submitEvent": "SAVE",
|
|
1581
1582
|
"fields": [
|
|
1582
1583
|
"title",
|
|
@@ -1586,13 +1587,12 @@
|
|
|
1586
1587
|
"status",
|
|
1587
1588
|
"storyPoints",
|
|
1588
1589
|
"dueDate"
|
|
1589
|
-
]
|
|
1590
|
-
"cancelEvent": "CLOSE",
|
|
1591
|
-
"entity": "@payload.row",
|
|
1592
|
-
"mode": "edit",
|
|
1593
|
-
"type": "form-section"
|
|
1590
|
+
]
|
|
1594
1591
|
}
|
|
1595
|
-
]
|
|
1592
|
+
],
|
|
1593
|
+
"direction": "vertical",
|
|
1594
|
+
"type": "stack",
|
|
1595
|
+
"gap": "md"
|
|
1596
1596
|
}
|
|
1597
1597
|
]
|
|
1598
1598
|
]
|
|
@@ -1633,8 +1633,8 @@
|
|
|
1633
1633
|
"@payload.data",
|
|
1634
1634
|
{
|
|
1635
1635
|
"emit": {
|
|
1636
|
-
"
|
|
1637
|
-
"
|
|
1636
|
+
"success": "TaskUpdated",
|
|
1637
|
+
"failure": "TaskUpdateFailed"
|
|
1638
1638
|
}
|
|
1639
1639
|
}
|
|
1640
1640
|
],
|
|
@@ -1827,8 +1827,8 @@
|
|
|
1827
1827
|
"Task",
|
|
1828
1828
|
{
|
|
1829
1829
|
"emit": {
|
|
1830
|
-
"
|
|
1831
|
-
"
|
|
1830
|
+
"failure": "TaskLoadFailed",
|
|
1831
|
+
"success": "TaskLoaded"
|
|
1832
1832
|
}
|
|
1833
1833
|
}
|
|
1834
1834
|
]
|
|
@@ -1854,10 +1854,9 @@
|
|
|
1854
1854
|
"render-ui",
|
|
1855
1855
|
"modal",
|
|
1856
1856
|
{
|
|
1857
|
+
"direction": "vertical",
|
|
1857
1858
|
"children": [
|
|
1858
1859
|
{
|
|
1859
|
-
"type": "stack",
|
|
1860
|
-
"gap": "sm",
|
|
1861
1860
|
"children": [
|
|
1862
1861
|
{
|
|
1863
1862
|
"name": "eye",
|
|
@@ -1865,12 +1864,14 @@
|
|
|
1865
1864
|
},
|
|
1866
1865
|
{
|
|
1867
1866
|
"variant": "h3",
|
|
1868
|
-
"
|
|
1869
|
-
"
|
|
1867
|
+
"content": "@entity.title",
|
|
1868
|
+
"type": "typography"
|
|
1870
1869
|
}
|
|
1871
1870
|
],
|
|
1872
|
-
"
|
|
1873
|
-
"
|
|
1871
|
+
"direction": "horizontal",
|
|
1872
|
+
"gap": "sm",
|
|
1873
|
+
"type": "stack",
|
|
1874
|
+
"align": "center"
|
|
1874
1875
|
},
|
|
1875
1876
|
{
|
|
1876
1877
|
"type": "divider"
|
|
@@ -1878,76 +1879,79 @@
|
|
|
1878
1879
|
{
|
|
1879
1880
|
"children": [
|
|
1880
1881
|
{
|
|
1881
|
-
"variant": "caption",
|
|
1882
1882
|
"content": "Title",
|
|
1883
|
+
"variant": "caption",
|
|
1883
1884
|
"type": "typography"
|
|
1884
1885
|
},
|
|
1885
1886
|
{
|
|
1886
1887
|
"type": "typography",
|
|
1887
|
-
"
|
|
1888
|
-
"
|
|
1888
|
+
"variant": "body",
|
|
1889
|
+
"content": "@entity.title"
|
|
1889
1890
|
}
|
|
1890
1891
|
],
|
|
1891
1892
|
"direction": "horizontal",
|
|
1892
|
-
"
|
|
1893
|
-
"
|
|
1893
|
+
"gap": "md",
|
|
1894
|
+
"type": "stack"
|
|
1894
1895
|
},
|
|
1895
1896
|
{
|
|
1896
|
-
"gap": "md",
|
|
1897
|
-
"type": "stack",
|
|
1898
1897
|
"children": [
|
|
1899
1898
|
{
|
|
1899
|
+
"variant": "caption",
|
|
1900
1900
|
"content": "Description",
|
|
1901
|
-
"type": "typography"
|
|
1902
|
-
"variant": "caption"
|
|
1901
|
+
"type": "typography"
|
|
1903
1902
|
},
|
|
1904
1903
|
{
|
|
1904
|
+
"content": "@entity.description",
|
|
1905
1905
|
"variant": "body",
|
|
1906
|
-
"type": "typography"
|
|
1907
|
-
"content": "@entity.description"
|
|
1906
|
+
"type": "typography"
|
|
1908
1907
|
}
|
|
1909
1908
|
],
|
|
1909
|
+
"gap": "md",
|
|
1910
|
+
"type": "stack",
|
|
1910
1911
|
"direction": "horizontal"
|
|
1911
1912
|
},
|
|
1912
1913
|
{
|
|
1913
1914
|
"type": "stack",
|
|
1914
1915
|
"children": [
|
|
1915
1916
|
{
|
|
1916
|
-
"content": "Assignee",
|
|
1917
1917
|
"type": "typography",
|
|
1918
|
-
"variant": "caption"
|
|
1918
|
+
"variant": "caption",
|
|
1919
|
+
"content": "Assignee"
|
|
1919
1920
|
},
|
|
1920
1921
|
{
|
|
1921
|
-
"content": "@entity.assignee",
|
|
1922
1922
|
"variant": "body",
|
|
1923
|
-
"type": "typography"
|
|
1923
|
+
"type": "typography",
|
|
1924
|
+
"content": "@entity.assignee"
|
|
1924
1925
|
}
|
|
1925
1926
|
],
|
|
1926
|
-
"
|
|
1927
|
-
"
|
|
1927
|
+
"direction": "horizontal",
|
|
1928
|
+
"gap": "md"
|
|
1928
1929
|
},
|
|
1929
1930
|
{
|
|
1931
|
+
"gap": "md",
|
|
1930
1932
|
"direction": "horizontal",
|
|
1931
1933
|
"children": [
|
|
1932
1934
|
{
|
|
1935
|
+
"content": "Priority",
|
|
1933
1936
|
"type": "typography",
|
|
1934
|
-
"variant": "caption"
|
|
1935
|
-
"content": "Priority"
|
|
1937
|
+
"variant": "caption"
|
|
1936
1938
|
},
|
|
1937
1939
|
{
|
|
1940
|
+
"type": "typography",
|
|
1938
1941
|
"variant": "body",
|
|
1939
|
-
"content": "@entity.priority"
|
|
1940
|
-
"type": "typography"
|
|
1942
|
+
"content": "@entity.priority"
|
|
1941
1943
|
}
|
|
1942
1944
|
],
|
|
1943
|
-
"type": "stack"
|
|
1944
|
-
"gap": "md"
|
|
1945
|
+
"type": "stack"
|
|
1945
1946
|
},
|
|
1946
1947
|
{
|
|
1948
|
+
"direction": "horizontal",
|
|
1949
|
+
"type": "stack",
|
|
1950
|
+
"gap": "md",
|
|
1947
1951
|
"children": [
|
|
1948
1952
|
{
|
|
1949
|
-
"content": "Status",
|
|
1950
1953
|
"type": "typography",
|
|
1954
|
+
"content": "Status",
|
|
1951
1955
|
"variant": "caption"
|
|
1952
1956
|
},
|
|
1953
1957
|
{
|
|
@@ -1955,44 +1959,41 @@
|
|
|
1955
1959
|
"variant": "body",
|
|
1956
1960
|
"type": "typography"
|
|
1957
1961
|
}
|
|
1958
|
-
]
|
|
1959
|
-
"direction": "horizontal",
|
|
1960
|
-
"gap": "md",
|
|
1961
|
-
"type": "stack"
|
|
1962
|
+
]
|
|
1962
1963
|
},
|
|
1963
1964
|
{
|
|
1964
|
-
"
|
|
1965
|
+
"gap": "md",
|
|
1965
1966
|
"children": [
|
|
1966
1967
|
{
|
|
1967
|
-
"variant": "caption",
|
|
1968
1968
|
"type": "typography",
|
|
1969
|
+
"variant": "caption",
|
|
1969
1970
|
"content": "Story Points"
|
|
1970
1971
|
},
|
|
1971
1972
|
{
|
|
1972
1973
|
"variant": "body",
|
|
1973
|
-
"
|
|
1974
|
-
"
|
|
1974
|
+
"content": "@entity.storyPoints",
|
|
1975
|
+
"type": "typography"
|
|
1975
1976
|
}
|
|
1976
1977
|
],
|
|
1977
|
-
"
|
|
1978
|
-
"
|
|
1978
|
+
"type": "stack",
|
|
1979
|
+
"direction": "horizontal"
|
|
1979
1980
|
},
|
|
1980
1981
|
{
|
|
1981
|
-
"direction": "horizontal",
|
|
1982
1982
|
"type": "stack",
|
|
1983
|
+
"direction": "horizontal",
|
|
1984
|
+
"gap": "md",
|
|
1983
1985
|
"children": [
|
|
1984
1986
|
{
|
|
1985
|
-
"
|
|
1987
|
+
"content": "Due Date",
|
|
1986
1988
|
"type": "typography",
|
|
1987
|
-
"
|
|
1989
|
+
"variant": "caption"
|
|
1988
1990
|
},
|
|
1989
1991
|
{
|
|
1990
1992
|
"type": "typography",
|
|
1991
1993
|
"variant": "body",
|
|
1992
1994
|
"content": "@entity.dueDate"
|
|
1993
1995
|
}
|
|
1994
|
-
]
|
|
1995
|
-
"gap": "md"
|
|
1996
|
+
]
|
|
1996
1997
|
},
|
|
1997
1998
|
{
|
|
1998
1999
|
"type": "divider"
|
|
@@ -2001,17 +2002,17 @@
|
|
|
2001
2002
|
"justify": "end",
|
|
2002
2003
|
"children": [
|
|
2003
2004
|
{
|
|
2005
|
+
"icon": "edit",
|
|
2006
|
+
"label": "Edit",
|
|
2004
2007
|
"type": "button",
|
|
2005
|
-
"action": "EDIT",
|
|
2006
2008
|
"variant": "primary",
|
|
2007
|
-
"
|
|
2008
|
-
"icon": "edit"
|
|
2009
|
+
"action": "EDIT"
|
|
2009
2010
|
},
|
|
2010
2011
|
{
|
|
2011
|
-
"action": "CLOSE",
|
|
2012
2012
|
"label": "Close",
|
|
2013
|
+
"variant": "ghost",
|
|
2013
2014
|
"type": "button",
|
|
2014
|
-
"
|
|
2015
|
+
"action": "CLOSE"
|
|
2015
2016
|
}
|
|
2016
2017
|
],
|
|
2017
2018
|
"type": "stack",
|
|
@@ -2019,9 +2020,8 @@
|
|
|
2019
2020
|
"gap": "sm"
|
|
2020
2021
|
}
|
|
2021
2022
|
],
|
|
2022
|
-
"
|
|
2023
|
-
"
|
|
2024
|
-
"gap": "md"
|
|
2023
|
+
"gap": "md",
|
|
2024
|
+
"type": "stack"
|
|
2025
2025
|
}
|
|
2026
2026
|
]
|
|
2027
2027
|
]
|
|
@@ -2283,55 +2283,55 @@
|
|
|
2283
2283
|
"render-ui",
|
|
2284
2284
|
"modal",
|
|
2285
2285
|
{
|
|
2286
|
+
"type": "stack",
|
|
2286
2287
|
"direction": "vertical",
|
|
2287
2288
|
"gap": "md",
|
|
2288
|
-
"type": "stack",
|
|
2289
2289
|
"children": [
|
|
2290
2290
|
{
|
|
2291
|
+
"type": "stack",
|
|
2291
2292
|
"align": "center",
|
|
2293
|
+
"direction": "horizontal",
|
|
2294
|
+
"gap": "sm",
|
|
2292
2295
|
"children": [
|
|
2293
2296
|
{
|
|
2294
|
-
"
|
|
2295
|
-
"
|
|
2297
|
+
"name": "alert-triangle",
|
|
2298
|
+
"type": "icon"
|
|
2296
2299
|
},
|
|
2297
2300
|
{
|
|
2298
|
-
"variant": "h3",
|
|
2299
2301
|
"type": "typography",
|
|
2300
|
-
"content": "Delete Task"
|
|
2302
|
+
"content": "Delete Task",
|
|
2303
|
+
"variant": "h3"
|
|
2301
2304
|
}
|
|
2302
|
-
]
|
|
2303
|
-
"direction": "horizontal",
|
|
2304
|
-
"type": "stack",
|
|
2305
|
-
"gap": "sm"
|
|
2305
|
+
]
|
|
2306
2306
|
},
|
|
2307
2307
|
{
|
|
2308
2308
|
"type": "divider"
|
|
2309
2309
|
},
|
|
2310
2310
|
{
|
|
2311
|
+
"type": "alert",
|
|
2311
2312
|
"variant": "error",
|
|
2312
|
-
"message": "This action cannot be undone."
|
|
2313
|
-
"type": "alert"
|
|
2313
|
+
"message": "This action cannot be undone."
|
|
2314
2314
|
},
|
|
2315
2315
|
{
|
|
2316
|
+
"direction": "horizontal",
|
|
2317
|
+
"justify": "end",
|
|
2316
2318
|
"type": "stack",
|
|
2317
|
-
"gap": "sm",
|
|
2318
2319
|
"children": [
|
|
2319
2320
|
{
|
|
2320
|
-
"type": "button",
|
|
2321
|
-
"label": "Cancel",
|
|
2322
2321
|
"action": "CANCEL",
|
|
2323
|
-
"variant": "ghost"
|
|
2322
|
+
"variant": "ghost",
|
|
2323
|
+
"type": "button",
|
|
2324
|
+
"label": "Cancel"
|
|
2324
2325
|
},
|
|
2325
2326
|
{
|
|
2326
|
-
"label": "Delete",
|
|
2327
2327
|
"icon": "check",
|
|
2328
|
-
"type": "button",
|
|
2329
2328
|
"action": "CONFIRM_DELETE",
|
|
2329
|
+
"type": "button",
|
|
2330
|
+
"label": "Delete",
|
|
2330
2331
|
"variant": "danger"
|
|
2331
2332
|
}
|
|
2332
2333
|
],
|
|
2333
|
-
"
|
|
2334
|
-
"justify": "end"
|
|
2334
|
+
"gap": "sm"
|
|
2335
2335
|
}
|
|
2336
2336
|
]
|
|
2337
2337
|
}
|
|
@@ -2350,8 +2350,8 @@
|
|
|
2350
2350
|
"@entity.pendingId",
|
|
2351
2351
|
{
|
|
2352
2352
|
"emit": {
|
|
2353
|
-
"
|
|
2354
|
-
"
|
|
2353
|
+
"failure": "TaskDeleteFailed",
|
|
2354
|
+
"success": "TaskDeleted"
|
|
2355
2355
|
}
|
|
2356
2356
|
}
|
|
2357
2357
|
],
|
|
@@ -2372,8 +2372,8 @@
|
|
|
2372
2372
|
"Task",
|
|
2373
2373
|
{
|
|
2374
2374
|
"emit": {
|
|
2375
|
-
"
|
|
2376
|
-
"
|
|
2375
|
+
"failure": "TaskLoadFailed",
|
|
2376
|
+
"success": "TaskLoaded"
|
|
2377
2377
|
}
|
|
2378
2378
|
}
|
|
2379
2379
|
],
|
|
@@ -2434,8 +2434,8 @@
|
|
|
2434
2434
|
"Task",
|
|
2435
2435
|
{
|
|
2436
2436
|
"emit": {
|
|
2437
|
-
"
|
|
2438
|
-
"
|
|
2437
|
+
"failure": "TaskLoadFailed",
|
|
2438
|
+
"success": "TaskLoaded"
|
|
2439
2439
|
}
|
|
2440
2440
|
}
|
|
2441
2441
|
]
|
|
@@ -2818,8 +2818,8 @@
|
|
|
2818
2818
|
"Sprint",
|
|
2819
2819
|
{
|
|
2820
2820
|
"emit": {
|
|
2821
|
-
"
|
|
2822
|
-
"
|
|
2821
|
+
"success": "SprintLoaded",
|
|
2822
|
+
"failure": "SprintLoadFailed"
|
|
2823
2823
|
}
|
|
2824
2824
|
}
|
|
2825
2825
|
],
|
|
@@ -2828,21 +2828,21 @@
|
|
|
2828
2828
|
"main",
|
|
2829
2829
|
{
|
|
2830
2830
|
"direction": "vertical",
|
|
2831
|
+
"gap": "md",
|
|
2832
|
+
"align": "center",
|
|
2833
|
+
"className": "py-12",
|
|
2831
2834
|
"children": [
|
|
2832
2835
|
{
|
|
2833
2836
|
"type": "spinner"
|
|
2834
2837
|
},
|
|
2835
2838
|
{
|
|
2836
|
-
"content": "Loading…",
|
|
2837
2839
|
"type": "typography",
|
|
2838
|
-
"
|
|
2839
|
-
"variant": "caption"
|
|
2840
|
+
"content": "Loading…",
|
|
2841
|
+
"variant": "caption",
|
|
2842
|
+
"color": "muted"
|
|
2840
2843
|
}
|
|
2841
2844
|
],
|
|
2842
|
-
"
|
|
2843
|
-
"className": "py-12",
|
|
2844
|
-
"type": "stack",
|
|
2845
|
-
"align": "center"
|
|
2845
|
+
"type": "stack"
|
|
2846
2846
|
}
|
|
2847
2847
|
]
|
|
2848
2848
|
]
|
|
@@ -2856,6 +2856,8 @@
|
|
|
2856
2856
|
"render-ui",
|
|
2857
2857
|
"main",
|
|
2858
2858
|
{
|
|
2859
|
+
"type": "dashboard-layout",
|
|
2860
|
+
"appName": "ProjectManagerApp",
|
|
2859
2861
|
"navItems": [
|
|
2860
2862
|
{
|
|
2861
2863
|
"href": "/tasks",
|
|
@@ -2863,127 +2865,125 @@
|
|
|
2863
2865
|
"icon": "check-square"
|
|
2864
2866
|
},
|
|
2865
2867
|
{
|
|
2866
|
-
"href": "/sprints",
|
|
2867
2868
|
"label": "Sprints",
|
|
2869
|
+
"href": "/sprints",
|
|
2868
2870
|
"icon": "zap"
|
|
2869
2871
|
},
|
|
2870
2872
|
{
|
|
2871
2873
|
"label": "Burndown",
|
|
2872
|
-
"
|
|
2873
|
-
"
|
|
2874
|
+
"icon": "layout-list",
|
|
2875
|
+
"href": "/burndown"
|
|
2874
2876
|
}
|
|
2875
2877
|
],
|
|
2876
2878
|
"children": [
|
|
2877
2879
|
{
|
|
2878
|
-
"className": "max-w-5xl mx-auto w-full",
|
|
2879
2880
|
"children": [
|
|
2880
2881
|
{
|
|
2882
|
+
"type": "stack",
|
|
2883
|
+
"direction": "horizontal",
|
|
2884
|
+
"justify": "between",
|
|
2881
2885
|
"align": "center",
|
|
2882
2886
|
"children": [
|
|
2883
2887
|
{
|
|
2888
|
+
"type": "stack",
|
|
2889
|
+
"direction": "horizontal",
|
|
2890
|
+
"align": "center",
|
|
2891
|
+
"gap": "sm",
|
|
2884
2892
|
"children": [
|
|
2885
2893
|
{
|
|
2886
|
-
"
|
|
2887
|
-
"
|
|
2894
|
+
"name": "zap",
|
|
2895
|
+
"type": "icon"
|
|
2888
2896
|
},
|
|
2889
2897
|
{
|
|
2890
2898
|
"type": "typography",
|
|
2891
|
-
"
|
|
2892
|
-
"
|
|
2899
|
+
"content": "Sprints",
|
|
2900
|
+
"variant": "h2"
|
|
2893
2901
|
}
|
|
2894
|
-
]
|
|
2902
|
+
]
|
|
2903
|
+
},
|
|
2904
|
+
{
|
|
2895
2905
|
"type": "stack",
|
|
2896
2906
|
"gap": "sm",
|
|
2897
2907
|
"direction": "horizontal",
|
|
2898
|
-
"align": "center"
|
|
2899
|
-
},
|
|
2900
|
-
{
|
|
2901
2908
|
"children": [
|
|
2902
2909
|
{
|
|
2903
|
-
"
|
|
2910
|
+
"icon": "plus",
|
|
2904
2911
|
"action": "CREATE",
|
|
2905
2912
|
"label": "Create Sprint",
|
|
2906
|
-
"
|
|
2907
|
-
"
|
|
2913
|
+
"type": "button",
|
|
2914
|
+
"variant": "primary"
|
|
2908
2915
|
}
|
|
2909
|
-
]
|
|
2910
|
-
"direction": "horizontal",
|
|
2911
|
-
"type": "stack",
|
|
2912
|
-
"gap": "sm"
|
|
2916
|
+
]
|
|
2913
2917
|
}
|
|
2914
2918
|
],
|
|
2915
|
-
"gap": "md"
|
|
2916
|
-
"direction": "horizontal",
|
|
2917
|
-
"justify": "between",
|
|
2918
|
-
"type": "stack"
|
|
2919
|
+
"gap": "md"
|
|
2919
2920
|
},
|
|
2920
2921
|
{
|
|
2921
2922
|
"type": "divider"
|
|
2922
2923
|
},
|
|
2923
2924
|
{
|
|
2924
|
-
"type": "data-grid",
|
|
2925
|
-
"entity": "@payload.data",
|
|
2926
|
-
"itemActions": [
|
|
2927
|
-
{
|
|
2928
|
-
"label": "View",
|
|
2929
|
-
"event": "VIEW",
|
|
2930
|
-
"variant": "ghost"
|
|
2931
|
-
},
|
|
2932
|
-
{
|
|
2933
|
-
"variant": "ghost",
|
|
2934
|
-
"label": "Edit",
|
|
2935
|
-
"event": "EDIT"
|
|
2936
|
-
},
|
|
2937
|
-
{
|
|
2938
|
-
"variant": "danger",
|
|
2939
|
-
"label": "Delete",
|
|
2940
|
-
"event": "DELETE"
|
|
2941
|
-
}
|
|
2942
|
-
],
|
|
2943
2925
|
"fields": [
|
|
2944
2926
|
{
|
|
2945
|
-
"name": "name",
|
|
2946
2927
|
"variant": "h3",
|
|
2947
|
-
"icon": "zap"
|
|
2928
|
+
"icon": "zap",
|
|
2929
|
+
"name": "name"
|
|
2948
2930
|
},
|
|
2949
2931
|
{
|
|
2950
2932
|
"name": "status",
|
|
2951
2933
|
"variant": "badge"
|
|
2952
2934
|
},
|
|
2953
2935
|
{
|
|
2954
|
-
"
|
|
2955
|
-
"
|
|
2936
|
+
"name": "goal",
|
|
2937
|
+
"variant": "body"
|
|
2956
2938
|
},
|
|
2957
2939
|
{
|
|
2958
|
-
"format": "date",
|
|
2959
2940
|
"name": "startDate",
|
|
2941
|
+
"label": "Start",
|
|
2960
2942
|
"variant": "caption",
|
|
2961
|
-
"
|
|
2943
|
+
"format": "date"
|
|
2962
2944
|
},
|
|
2963
2945
|
{
|
|
2964
|
-
"name": "endDate",
|
|
2965
2946
|
"variant": "caption",
|
|
2966
2947
|
"label": "End",
|
|
2948
|
+
"name": "endDate",
|
|
2967
2949
|
"format": "date"
|
|
2968
2950
|
},
|
|
2969
2951
|
{
|
|
2952
|
+
"name": "taskCount",
|
|
2970
2953
|
"label": "Tasks",
|
|
2971
2954
|
"variant": "body",
|
|
2972
|
-
"name": "taskCount",
|
|
2973
2955
|
"format": "number"
|
|
2974
2956
|
}
|
|
2975
2957
|
],
|
|
2976
|
-
"
|
|
2977
|
-
"
|
|
2958
|
+
"type": "data-grid",
|
|
2959
|
+
"itemActions": [
|
|
2960
|
+
{
|
|
2961
|
+
"label": "View",
|
|
2962
|
+
"event": "VIEW",
|
|
2963
|
+
"variant": "ghost"
|
|
2964
|
+
},
|
|
2965
|
+
{
|
|
2966
|
+
"event": "EDIT",
|
|
2967
|
+
"variant": "ghost",
|
|
2968
|
+
"label": "Edit"
|
|
2969
|
+
},
|
|
2970
|
+
{
|
|
2971
|
+
"event": "DELETE",
|
|
2972
|
+
"variant": "danger",
|
|
2973
|
+
"label": "Delete"
|
|
2974
|
+
}
|
|
2975
|
+
],
|
|
2976
|
+
"entity": "@payload.data",
|
|
2977
|
+
"cols": 2.0,
|
|
2978
|
+
"gap": "md"
|
|
2978
2979
|
}
|
|
2979
2980
|
],
|
|
2981
|
+
"className": "max-w-5xl mx-auto w-full",
|
|
2980
2982
|
"gap": "lg",
|
|
2981
|
-
"
|
|
2982
|
-
"
|
|
2983
|
+
"direction": "vertical",
|
|
2984
|
+
"type": "stack"
|
|
2983
2985
|
}
|
|
2984
|
-
]
|
|
2985
|
-
"type": "dashboard-layout",
|
|
2986
|
-
"appName": "ProjectManagerApp"
|
|
2986
|
+
]
|
|
2987
2987
|
}
|
|
2988
2988
|
]
|
|
2989
2989
|
]
|
|
@@ -2997,7 +2997,7 @@
|
|
|
2997
2997
|
"render-ui",
|
|
2998
2998
|
"main",
|
|
2999
2999
|
{
|
|
3000
|
-
"
|
|
3000
|
+
"className": "py-12",
|
|
3001
3001
|
"gap": "md",
|
|
3002
3002
|
"children": [
|
|
3003
3003
|
{
|
|
@@ -3012,21 +3012,21 @@
|
|
|
3012
3012
|
},
|
|
3013
3013
|
{
|
|
3014
3014
|
"type": "typography",
|
|
3015
|
-
"color": "muted",
|
|
3016
3015
|
"content": "@payload.error",
|
|
3016
|
+
"color": "muted",
|
|
3017
3017
|
"variant": "body"
|
|
3018
3018
|
},
|
|
3019
3019
|
{
|
|
3020
|
+
"type": "button",
|
|
3021
|
+
"action": "INIT",
|
|
3020
3022
|
"variant": "primary",
|
|
3021
3023
|
"label": "Retry",
|
|
3022
|
-
"
|
|
3023
|
-
"icon": "rotate-ccw",
|
|
3024
|
-
"action": "INIT"
|
|
3024
|
+
"icon": "rotate-ccw"
|
|
3025
3025
|
}
|
|
3026
3026
|
],
|
|
3027
|
-
"align": "center",
|
|
3028
3027
|
"type": "stack",
|
|
3029
|
-
"
|
|
3028
|
+
"direction": "vertical",
|
|
3029
|
+
"align": "center"
|
|
3030
3030
|
}
|
|
3031
3031
|
]
|
|
3032
3032
|
]
|
|
@@ -3201,8 +3201,8 @@
|
|
|
3201
3201
|
"Sprint",
|
|
3202
3202
|
{
|
|
3203
3203
|
"emit": {
|
|
3204
|
-
"
|
|
3205
|
-
"
|
|
3204
|
+
"failure": "SprintLoadFailed",
|
|
3205
|
+
"success": "SprintLoaded"
|
|
3206
3206
|
}
|
|
3207
3207
|
}
|
|
3208
3208
|
]
|
|
@@ -3229,28 +3229,28 @@
|
|
|
3229
3229
|
{
|
|
3230
3230
|
"children": [
|
|
3231
3231
|
{
|
|
3232
|
+
"gap": "sm",
|
|
3232
3233
|
"children": [
|
|
3233
3234
|
{
|
|
3234
|
-
"
|
|
3235
|
-
"
|
|
3235
|
+
"name": "plus-circle",
|
|
3236
|
+
"type": "icon"
|
|
3236
3237
|
},
|
|
3237
3238
|
{
|
|
3238
|
-
"
|
|
3239
|
+
"content": "Create Sprint",
|
|
3239
3240
|
"variant": "h3",
|
|
3240
|
-
"
|
|
3241
|
+
"type": "typography"
|
|
3241
3242
|
}
|
|
3242
3243
|
],
|
|
3243
3244
|
"type": "stack",
|
|
3244
|
-
"direction": "horizontal"
|
|
3245
|
-
"gap": "sm"
|
|
3245
|
+
"direction": "horizontal"
|
|
3246
3246
|
},
|
|
3247
3247
|
{
|
|
3248
3248
|
"type": "divider"
|
|
3249
3249
|
},
|
|
3250
3250
|
{
|
|
3251
|
-
"mode": "create",
|
|
3252
|
-
"type": "form-section",
|
|
3253
3251
|
"submitEvent": "SAVE",
|
|
3252
|
+
"type": "form-section",
|
|
3253
|
+
"mode": "create",
|
|
3254
3254
|
"cancelEvent": "CLOSE",
|
|
3255
3255
|
"fields": [
|
|
3256
3256
|
"name",
|
|
@@ -3262,9 +3262,9 @@
|
|
|
3262
3262
|
]
|
|
3263
3263
|
}
|
|
3264
3264
|
],
|
|
3265
|
-
"direction": "vertical",
|
|
3266
3265
|
"type": "stack",
|
|
3267
|
-
"gap": "md"
|
|
3266
|
+
"gap": "md",
|
|
3267
|
+
"direction": "vertical"
|
|
3268
3268
|
}
|
|
3269
3269
|
]
|
|
3270
3270
|
]
|
|
@@ -3305,8 +3305,8 @@
|
|
|
3305
3305
|
"@payload.data",
|
|
3306
3306
|
{
|
|
3307
3307
|
"emit": {
|
|
3308
|
-
"
|
|
3309
|
-
"
|
|
3308
|
+
"failure": "SprintSaveFailed",
|
|
3309
|
+
"success": "SprintSaved"
|
|
3310
3310
|
}
|
|
3311
3311
|
}
|
|
3312
3312
|
],
|
|
@@ -3516,8 +3516,8 @@
|
|
|
3516
3516
|
"Sprint",
|
|
3517
3517
|
{
|
|
3518
3518
|
"emit": {
|
|
3519
|
-
"
|
|
3520
|
-
"
|
|
3519
|
+
"failure": "SprintLoadFailed",
|
|
3520
|
+
"success": "SprintLoaded"
|
|
3521
3521
|
}
|
|
3522
3522
|
}
|
|
3523
3523
|
]
|
|
@@ -3544,29 +3544,34 @@
|
|
|
3544
3544
|
"modal",
|
|
3545
3545
|
{
|
|
3546
3546
|
"direction": "vertical",
|
|
3547
|
+
"type": "stack",
|
|
3547
3548
|
"gap": "md",
|
|
3548
3549
|
"children": [
|
|
3549
3550
|
{
|
|
3550
|
-
"type": "stack",
|
|
3551
|
-
"gap": "sm",
|
|
3552
|
-
"direction": "horizontal",
|
|
3553
3551
|
"children": [
|
|
3554
3552
|
{
|
|
3555
3553
|
"name": "edit",
|
|
3556
3554
|
"type": "icon"
|
|
3557
3555
|
},
|
|
3558
3556
|
{
|
|
3559
|
-
"
|
|
3557
|
+
"variant": "h3",
|
|
3560
3558
|
"content": "Edit Sprint",
|
|
3561
|
-
"
|
|
3559
|
+
"type": "typography"
|
|
3562
3560
|
}
|
|
3563
|
-
]
|
|
3561
|
+
],
|
|
3562
|
+
"type": "stack",
|
|
3563
|
+
"gap": "sm",
|
|
3564
|
+
"direction": "horizontal"
|
|
3564
3565
|
},
|
|
3565
3566
|
{
|
|
3566
3567
|
"type": "divider"
|
|
3567
3568
|
},
|
|
3568
3569
|
{
|
|
3570
|
+
"entity": "@payload.row",
|
|
3569
3571
|
"mode": "edit",
|
|
3572
|
+
"submitEvent": "SAVE",
|
|
3573
|
+
"cancelEvent": "CLOSE",
|
|
3574
|
+
"type": "form-section",
|
|
3570
3575
|
"fields": [
|
|
3571
3576
|
"name",
|
|
3572
3577
|
"startDate",
|
|
@@ -3574,14 +3579,9 @@
|
|
|
3574
3579
|
"goal",
|
|
3575
3580
|
"status",
|
|
3576
3581
|
"taskCount"
|
|
3577
|
-
]
|
|
3578
|
-
"cancelEvent": "CLOSE",
|
|
3579
|
-
"entity": "@payload.row",
|
|
3580
|
-
"type": "form-section",
|
|
3581
|
-
"submitEvent": "SAVE"
|
|
3582
|
+
]
|
|
3582
3583
|
}
|
|
3583
|
-
]
|
|
3584
|
-
"type": "stack"
|
|
3584
|
+
]
|
|
3585
3585
|
}
|
|
3586
3586
|
]
|
|
3587
3587
|
]
|
|
@@ -3831,156 +3831,156 @@
|
|
|
3831
3831
|
"modal",
|
|
3832
3832
|
{
|
|
3833
3833
|
"direction": "vertical",
|
|
3834
|
-
"type": "stack",
|
|
3835
|
-
"gap": "md",
|
|
3836
3834
|
"children": [
|
|
3837
3835
|
{
|
|
3838
|
-
"gap": "sm",
|
|
3839
3836
|
"direction": "horizontal",
|
|
3837
|
+
"gap": "sm",
|
|
3838
|
+
"type": "stack",
|
|
3839
|
+
"align": "center",
|
|
3840
3840
|
"children": [
|
|
3841
3841
|
{
|
|
3842
|
-
"
|
|
3843
|
-
"
|
|
3842
|
+
"type": "icon",
|
|
3843
|
+
"name": "eye"
|
|
3844
3844
|
},
|
|
3845
3845
|
{
|
|
3846
|
-
"type": "typography",
|
|
3847
3846
|
"variant": "h3",
|
|
3848
|
-
"content": "@entity.name"
|
|
3847
|
+
"content": "@entity.name",
|
|
3848
|
+
"type": "typography"
|
|
3849
3849
|
}
|
|
3850
|
-
]
|
|
3851
|
-
"type": "stack",
|
|
3852
|
-
"align": "center"
|
|
3850
|
+
]
|
|
3853
3851
|
},
|
|
3854
3852
|
{
|
|
3855
3853
|
"type": "divider"
|
|
3856
3854
|
},
|
|
3857
3855
|
{
|
|
3858
|
-
"direction": "horizontal",
|
|
3859
3856
|
"gap": "md",
|
|
3860
|
-
"type": "stack",
|
|
3861
3857
|
"children": [
|
|
3862
3858
|
{
|
|
3863
3859
|
"type": "typography",
|
|
3864
|
-
"
|
|
3865
|
-
"
|
|
3860
|
+
"content": "Name",
|
|
3861
|
+
"variant": "caption"
|
|
3866
3862
|
},
|
|
3867
3863
|
{
|
|
3868
|
-
"type": "typography",
|
|
3869
3864
|
"variant": "body",
|
|
3870
|
-
"content": "@entity.name"
|
|
3865
|
+
"content": "@entity.name",
|
|
3866
|
+
"type": "typography"
|
|
3871
3867
|
}
|
|
3872
|
-
]
|
|
3868
|
+
],
|
|
3869
|
+
"direction": "horizontal",
|
|
3870
|
+
"type": "stack"
|
|
3873
3871
|
},
|
|
3874
3872
|
{
|
|
3875
3873
|
"gap": "md",
|
|
3876
|
-
"direction": "horizontal",
|
|
3877
3874
|
"children": [
|
|
3878
3875
|
{
|
|
3879
|
-
"type": "typography",
|
|
3880
3876
|
"content": "Start Date",
|
|
3877
|
+
"type": "typography",
|
|
3881
3878
|
"variant": "caption"
|
|
3882
3879
|
},
|
|
3883
3880
|
{
|
|
3884
3881
|
"variant": "body",
|
|
3885
|
-
"
|
|
3886
|
-
"
|
|
3882
|
+
"content": "@entity.startDate",
|
|
3883
|
+
"type": "typography"
|
|
3887
3884
|
}
|
|
3888
3885
|
],
|
|
3889
|
-
"type": "stack"
|
|
3886
|
+
"type": "stack",
|
|
3887
|
+
"direction": "horizontal"
|
|
3890
3888
|
},
|
|
3891
3889
|
{
|
|
3890
|
+
"direction": "horizontal",
|
|
3892
3891
|
"type": "stack",
|
|
3893
3892
|
"gap": "md",
|
|
3894
|
-
"direction": "horizontal",
|
|
3895
3893
|
"children": [
|
|
3896
3894
|
{
|
|
3897
|
-
"variant": "caption",
|
|
3898
3895
|
"content": "End Date",
|
|
3899
|
-
"type": "typography"
|
|
3896
|
+
"type": "typography",
|
|
3897
|
+
"variant": "caption"
|
|
3900
3898
|
},
|
|
3901
3899
|
{
|
|
3902
3900
|
"variant": "body",
|
|
3903
|
-
"
|
|
3904
|
-
"
|
|
3901
|
+
"type": "typography",
|
|
3902
|
+
"content": "@entity.endDate"
|
|
3905
3903
|
}
|
|
3906
3904
|
]
|
|
3907
3905
|
},
|
|
3908
3906
|
{
|
|
3909
|
-
"direction": "horizontal",
|
|
3910
3907
|
"type": "stack",
|
|
3911
|
-
"gap": "md",
|
|
3912
3908
|
"children": [
|
|
3913
3909
|
{
|
|
3914
|
-
"variant": "caption",
|
|
3915
3910
|
"type": "typography",
|
|
3911
|
+
"variant": "caption",
|
|
3916
3912
|
"content": "Goal"
|
|
3917
3913
|
},
|
|
3918
3914
|
{
|
|
3919
|
-
"variant": "body",
|
|
3920
3915
|
"content": "@entity.goal",
|
|
3921
|
-
"type": "typography"
|
|
3916
|
+
"type": "typography",
|
|
3917
|
+
"variant": "body"
|
|
3922
3918
|
}
|
|
3923
|
-
]
|
|
3919
|
+
],
|
|
3920
|
+
"direction": "horizontal",
|
|
3921
|
+
"gap": "md"
|
|
3924
3922
|
},
|
|
3925
3923
|
{
|
|
3926
|
-
"
|
|
3924
|
+
"direction": "horizontal",
|
|
3927
3925
|
"children": [
|
|
3928
3926
|
{
|
|
3929
|
-
"type": "typography",
|
|
3930
3927
|
"variant": "caption",
|
|
3928
|
+
"type": "typography",
|
|
3931
3929
|
"content": "Status"
|
|
3932
3930
|
},
|
|
3933
3931
|
{
|
|
3934
3932
|
"variant": "body",
|
|
3935
|
-
"
|
|
3936
|
-
"
|
|
3933
|
+
"content": "@entity.status",
|
|
3934
|
+
"type": "typography"
|
|
3937
3935
|
}
|
|
3938
3936
|
],
|
|
3939
|
-
"
|
|
3937
|
+
"gap": "md",
|
|
3940
3938
|
"type": "stack"
|
|
3941
3939
|
},
|
|
3942
3940
|
{
|
|
3943
3941
|
"gap": "md",
|
|
3942
|
+
"direction": "horizontal",
|
|
3944
3943
|
"children": [
|
|
3945
3944
|
{
|
|
3946
3945
|
"type": "typography",
|
|
3947
|
-
"
|
|
3948
|
-
"
|
|
3946
|
+
"variant": "caption",
|
|
3947
|
+
"content": "Task Count"
|
|
3949
3948
|
},
|
|
3950
3949
|
{
|
|
3951
3950
|
"content": "@entity.taskCount",
|
|
3952
|
-
"
|
|
3953
|
-
"
|
|
3951
|
+
"variant": "body",
|
|
3952
|
+
"type": "typography"
|
|
3954
3953
|
}
|
|
3955
3954
|
],
|
|
3956
|
-
"type": "stack"
|
|
3957
|
-
"direction": "horizontal"
|
|
3955
|
+
"type": "stack"
|
|
3958
3956
|
},
|
|
3959
3957
|
{
|
|
3960
3958
|
"type": "divider"
|
|
3961
3959
|
},
|
|
3962
3960
|
{
|
|
3961
|
+
"justify": "end",
|
|
3962
|
+
"direction": "horizontal",
|
|
3963
|
+
"type": "stack",
|
|
3963
3964
|
"children": [
|
|
3964
3965
|
{
|
|
3966
|
+
"label": "Edit",
|
|
3965
3967
|
"icon": "edit",
|
|
3968
|
+
"type": "button",
|
|
3966
3969
|
"action": "EDIT",
|
|
3967
|
-
"variant": "primary"
|
|
3968
|
-
"label": "Edit",
|
|
3969
|
-
"type": "button"
|
|
3970
|
+
"variant": "primary"
|
|
3970
3971
|
},
|
|
3971
3972
|
{
|
|
3973
|
+
"variant": "ghost",
|
|
3972
3974
|
"action": "CLOSE",
|
|
3973
3975
|
"label": "Close",
|
|
3974
|
-
"type": "button"
|
|
3975
|
-
"variant": "ghost"
|
|
3976
|
+
"type": "button"
|
|
3976
3977
|
}
|
|
3977
3978
|
],
|
|
3978
|
-
"gap": "sm"
|
|
3979
|
-
"type": "stack",
|
|
3980
|
-
"direction": "horizontal",
|
|
3981
|
-
"justify": "end"
|
|
3979
|
+
"gap": "sm"
|
|
3982
3980
|
}
|
|
3983
|
-
]
|
|
3981
|
+
],
|
|
3982
|
+
"type": "stack",
|
|
3983
|
+
"gap": "md"
|
|
3984
3984
|
}
|
|
3985
3985
|
]
|
|
3986
3986
|
]
|
|
@@ -4202,8 +4202,8 @@
|
|
|
4202
4202
|
"Sprint",
|
|
4203
4203
|
{
|
|
4204
4204
|
"emit": {
|
|
4205
|
-
"
|
|
4206
|
-
"
|
|
4205
|
+
"failure": "SprintLoadFailed",
|
|
4206
|
+
"success": "SprintLoaded"
|
|
4207
4207
|
}
|
|
4208
4208
|
}
|
|
4209
4209
|
]
|
|
@@ -4234,14 +4234,9 @@
|
|
|
4234
4234
|
"render-ui",
|
|
4235
4235
|
"modal",
|
|
4236
4236
|
{
|
|
4237
|
-
"gap": "md",
|
|
4238
|
-
"type": "stack",
|
|
4239
|
-
"direction": "vertical",
|
|
4240
4237
|
"children": [
|
|
4241
4238
|
{
|
|
4242
|
-
"direction": "horizontal",
|
|
4243
4239
|
"type": "stack",
|
|
4244
|
-
"gap": "sm",
|
|
4245
4240
|
"align": "center",
|
|
4246
4241
|
"children": [
|
|
4247
4242
|
{
|
|
@@ -4253,38 +4248,43 @@
|
|
|
4253
4248
|
"content": "Delete Sprint",
|
|
4254
4249
|
"variant": "h3"
|
|
4255
4250
|
}
|
|
4256
|
-
]
|
|
4251
|
+
],
|
|
4252
|
+
"gap": "sm",
|
|
4253
|
+
"direction": "horizontal"
|
|
4257
4254
|
},
|
|
4258
4255
|
{
|
|
4259
4256
|
"type": "divider"
|
|
4260
4257
|
},
|
|
4261
4258
|
{
|
|
4262
|
-
"variant": "error",
|
|
4263
4259
|
"type": "alert",
|
|
4260
|
+
"variant": "error",
|
|
4264
4261
|
"message": "This action cannot be undone."
|
|
4265
4262
|
},
|
|
4266
4263
|
{
|
|
4264
|
+
"type": "stack",
|
|
4267
4265
|
"direction": "horizontal",
|
|
4266
|
+
"gap": "sm",
|
|
4268
4267
|
"children": [
|
|
4269
4268
|
{
|
|
4270
|
-
"variant": "ghost",
|
|
4271
|
-
"type": "button",
|
|
4272
4269
|
"label": "Cancel",
|
|
4273
|
-
"
|
|
4270
|
+
"type": "button",
|
|
4271
|
+
"action": "CANCEL",
|
|
4272
|
+
"variant": "ghost"
|
|
4274
4273
|
},
|
|
4275
4274
|
{
|
|
4276
4275
|
"type": "button",
|
|
4277
|
-
"action": "CONFIRM_DELETE",
|
|
4278
|
-
"label": "Delete",
|
|
4279
4276
|
"variant": "danger",
|
|
4280
|
-
"
|
|
4277
|
+
"label": "Delete",
|
|
4278
|
+
"icon": "check",
|
|
4279
|
+
"action": "CONFIRM_DELETE"
|
|
4281
4280
|
}
|
|
4282
4281
|
],
|
|
4283
|
-
"justify": "end"
|
|
4284
|
-
"gap": "sm",
|
|
4285
|
-
"type": "stack"
|
|
4282
|
+
"justify": "end"
|
|
4286
4283
|
}
|
|
4287
|
-
]
|
|
4284
|
+
],
|
|
4285
|
+
"gap": "md",
|
|
4286
|
+
"direction": "vertical",
|
|
4287
|
+
"type": "stack"
|
|
4288
4288
|
}
|
|
4289
4289
|
]
|
|
4290
4290
|
]
|
|
@@ -4301,8 +4301,8 @@
|
|
|
4301
4301
|
"@entity.pendingId",
|
|
4302
4302
|
{
|
|
4303
4303
|
"emit": {
|
|
4304
|
-
"
|
|
4305
|
-
"
|
|
4304
|
+
"failure": "SprintDeleteFailed",
|
|
4305
|
+
"success": "SprintDeleted"
|
|
4306
4306
|
}
|
|
4307
4307
|
}
|
|
4308
4308
|
],
|
|
@@ -4356,8 +4356,8 @@
|
|
|
4356
4356
|
"Sprint",
|
|
4357
4357
|
{
|
|
4358
4358
|
"emit": {
|
|
4359
|
-
"
|
|
4360
|
-
"
|
|
4359
|
+
"failure": "SprintLoadFailed",
|
|
4360
|
+
"success": "SprintLoaded"
|
|
4361
4361
|
}
|
|
4362
4362
|
}
|
|
4363
4363
|
]
|
|
@@ -4589,8 +4589,8 @@
|
|
|
4589
4589
|
"Burndown",
|
|
4590
4590
|
{
|
|
4591
4591
|
"emit": {
|
|
4592
|
-
"
|
|
4593
|
-
"
|
|
4592
|
+
"success": "BurndownLoaded",
|
|
4593
|
+
"failure": "BurndownLoadFailed"
|
|
4594
4594
|
}
|
|
4595
4595
|
}
|
|
4596
4596
|
],
|
|
@@ -4598,17 +4598,18 @@
|
|
|
4598
4598
|
"render-ui",
|
|
4599
4599
|
"main",
|
|
4600
4600
|
{
|
|
4601
|
+
"type": "dashboard-layout",
|
|
4601
4602
|
"appName": "ProjectManagerApp",
|
|
4602
4603
|
"navItems": [
|
|
4603
4604
|
{
|
|
4604
|
-
"label": "Tasks",
|
|
4605
4605
|
"icon": "check-square",
|
|
4606
|
-
"href": "/tasks"
|
|
4606
|
+
"href": "/tasks",
|
|
4607
|
+
"label": "Tasks"
|
|
4607
4608
|
},
|
|
4608
4609
|
{
|
|
4609
4610
|
"href": "/sprints",
|
|
4610
|
-
"
|
|
4611
|
-
"
|
|
4611
|
+
"label": "Sprints",
|
|
4612
|
+
"icon": "zap"
|
|
4612
4613
|
},
|
|
4613
4614
|
{
|
|
4614
4615
|
"icon": "layout-list",
|
|
@@ -4616,15 +4617,13 @@
|
|
|
4616
4617
|
"href": "/burndown"
|
|
4617
4618
|
}
|
|
4618
4619
|
],
|
|
4619
|
-
"type": "dashboard-layout",
|
|
4620
4620
|
"children": [
|
|
4621
4621
|
{
|
|
4622
|
-
"type": "scaled-diagram",
|
|
4623
4622
|
"children": [
|
|
4624
4623
|
{
|
|
4625
|
-
"direction": "vertical",
|
|
4626
4624
|
"children": [
|
|
4627
4625
|
{
|
|
4626
|
+
"type": "breadcrumb",
|
|
4628
4627
|
"items": [
|
|
4629
4628
|
{
|
|
4630
4629
|
"label": "Home",
|
|
@@ -4633,20 +4632,21 @@
|
|
|
4633
4632
|
{
|
|
4634
4633
|
"label": "Burndown Chart"
|
|
4635
4634
|
}
|
|
4636
|
-
]
|
|
4637
|
-
"type": "breadcrumb"
|
|
4635
|
+
]
|
|
4638
4636
|
},
|
|
4639
4637
|
{
|
|
4638
|
+
"type": "stack",
|
|
4639
|
+
"direction": "horizontal",
|
|
4640
4640
|
"gap": "md",
|
|
4641
4641
|
"justify": "between",
|
|
4642
|
-
"direction": "horizontal",
|
|
4643
|
-
"type": "stack",
|
|
4644
4642
|
"children": [
|
|
4645
4643
|
{
|
|
4644
|
+
"gap": "md",
|
|
4645
|
+
"direction": "horizontal",
|
|
4646
4646
|
"children": [
|
|
4647
4647
|
{
|
|
4648
|
-
"
|
|
4649
|
-
"
|
|
4648
|
+
"type": "icon",
|
|
4649
|
+
"name": "trending-down"
|
|
4650
4650
|
},
|
|
4651
4651
|
{
|
|
4652
4652
|
"content": "Burndown Chart",
|
|
@@ -4654,15 +4654,13 @@
|
|
|
4654
4654
|
"type": "typography"
|
|
4655
4655
|
}
|
|
4656
4656
|
],
|
|
4657
|
-
"type": "stack"
|
|
4658
|
-
"direction": "horizontal",
|
|
4659
|
-
"gap": "md"
|
|
4657
|
+
"type": "stack"
|
|
4660
4658
|
},
|
|
4661
4659
|
{
|
|
4662
|
-
"variant": "secondary",
|
|
4663
|
-
"action": "REFRESH",
|
|
4664
4660
|
"type": "button",
|
|
4665
4661
|
"label": "Refresh",
|
|
4662
|
+
"action": "REFRESH",
|
|
4663
|
+
"variant": "secondary",
|
|
4666
4664
|
"icon": "refresh-cw"
|
|
4667
4665
|
}
|
|
4668
4666
|
]
|
|
@@ -4671,14 +4669,14 @@
|
|
|
4671
4669
|
"type": "divider"
|
|
4672
4670
|
},
|
|
4673
4671
|
{
|
|
4674
|
-
"type": "box",
|
|
4675
4672
|
"padding": "md",
|
|
4673
|
+
"type": "box",
|
|
4676
4674
|
"children": [
|
|
4677
4675
|
{
|
|
4678
4676
|
"children": [
|
|
4679
4677
|
{
|
|
4680
|
-
"value": "@entity.totalPoints",
|
|
4681
4678
|
"type": "stat-display",
|
|
4679
|
+
"value": "@entity.totalPoints",
|
|
4682
4680
|
"label": "TotalPoints"
|
|
4683
4681
|
},
|
|
4684
4682
|
{
|
|
@@ -4698,12 +4696,12 @@
|
|
|
4698
4696
|
},
|
|
4699
4697
|
{
|
|
4700
4698
|
"type": "stat-display",
|
|
4701
|
-
"
|
|
4702
|
-
"
|
|
4699
|
+
"label": "DaysRemaining",
|
|
4700
|
+
"value": "@entity.daysRemaining"
|
|
4703
4701
|
}
|
|
4704
4702
|
],
|
|
4705
|
-
"
|
|
4706
|
-
"
|
|
4703
|
+
"cols": 5.0,
|
|
4704
|
+
"type": "simple-grid"
|
|
4707
4705
|
}
|
|
4708
4706
|
]
|
|
4709
4707
|
},
|
|
@@ -4712,18 +4710,16 @@
|
|
|
4712
4710
|
},
|
|
4713
4711
|
{
|
|
4714
4712
|
"type": "grid",
|
|
4715
|
-
"gap": "md",
|
|
4716
|
-
"cols": 2.0,
|
|
4717
4713
|
"children": [
|
|
4718
4714
|
{
|
|
4719
|
-
"type": "card",
|
|
4720
4715
|
"children": [
|
|
4721
4716
|
{
|
|
4722
4717
|
"content": "Chart View",
|
|
4723
4718
|
"variant": "caption",
|
|
4724
4719
|
"type": "typography"
|
|
4725
4720
|
}
|
|
4726
|
-
]
|
|
4721
|
+
],
|
|
4722
|
+
"type": "card"
|
|
4727
4723
|
},
|
|
4728
4724
|
{
|
|
4729
4725
|
"type": "card",
|
|
@@ -4735,10 +4731,11 @@
|
|
|
4735
4731
|
}
|
|
4736
4732
|
]
|
|
4737
4733
|
}
|
|
4738
|
-
]
|
|
4734
|
+
],
|
|
4735
|
+
"cols": 2.0,
|
|
4736
|
+
"gap": "md"
|
|
4739
4737
|
},
|
|
4740
4738
|
{
|
|
4741
|
-
"type": "line-chart",
|
|
4742
4739
|
"data": [
|
|
4743
4740
|
{
|
|
4744
4741
|
"date": "Jan",
|
|
@@ -4753,66 +4750,69 @@
|
|
|
4753
4750
|
"value": 15.0
|
|
4754
4751
|
},
|
|
4755
4752
|
{
|
|
4756
|
-
"
|
|
4757
|
-
"
|
|
4753
|
+
"date": "Apr",
|
|
4754
|
+
"value": 25.0
|
|
4758
4755
|
},
|
|
4759
4756
|
{
|
|
4760
|
-
"
|
|
4761
|
-
"
|
|
4757
|
+
"value": 22.0,
|
|
4758
|
+
"date": "May"
|
|
4762
4759
|
},
|
|
4763
4760
|
{
|
|
4764
|
-
"
|
|
4765
|
-
"
|
|
4761
|
+
"value": 30.0,
|
|
4762
|
+
"date": "Jun"
|
|
4766
4763
|
}
|
|
4767
|
-
]
|
|
4764
|
+
],
|
|
4765
|
+
"type": "line-chart"
|
|
4768
4766
|
},
|
|
4769
4767
|
{
|
|
4770
|
-
"type": "chart-legend",
|
|
4771
4768
|
"items": [
|
|
4772
4769
|
{
|
|
4773
4770
|
"color": "primary",
|
|
4774
4771
|
"label": "Current"
|
|
4775
4772
|
},
|
|
4776
4773
|
{
|
|
4777
|
-
"
|
|
4778
|
-
"
|
|
4774
|
+
"label": "Previous",
|
|
4775
|
+
"color": "muted"
|
|
4779
4776
|
}
|
|
4780
|
-
]
|
|
4777
|
+
],
|
|
4778
|
+
"type": "chart-legend"
|
|
4781
4779
|
},
|
|
4782
4780
|
{
|
|
4783
|
-
"type": "graph-view",
|
|
4784
4781
|
"edges": [
|
|
4785
4782
|
{
|
|
4786
|
-
"
|
|
4787
|
-
"
|
|
4783
|
+
"target": "b",
|
|
4784
|
+
"source": "a"
|
|
4788
4785
|
},
|
|
4789
4786
|
{
|
|
4790
4787
|
"target": "c",
|
|
4791
4788
|
"source": "b"
|
|
4792
4789
|
}
|
|
4793
4790
|
],
|
|
4791
|
+
"type": "graph-view",
|
|
4794
4792
|
"nodes": [
|
|
4795
4793
|
{
|
|
4796
|
-
"
|
|
4797
|
-
"
|
|
4794
|
+
"label": "Start",
|
|
4795
|
+
"id": "a"
|
|
4798
4796
|
},
|
|
4799
4797
|
{
|
|
4800
|
-
"
|
|
4801
|
-
"
|
|
4798
|
+
"id": "b",
|
|
4799
|
+
"label": "Process"
|
|
4802
4800
|
},
|
|
4803
4801
|
{
|
|
4804
|
-
"
|
|
4805
|
-
"
|
|
4802
|
+
"id": "c",
|
|
4803
|
+
"label": "End"
|
|
4806
4804
|
}
|
|
4807
4805
|
],
|
|
4808
|
-
"
|
|
4809
|
-
"
|
|
4806
|
+
"height": 200.0,
|
|
4807
|
+
"width": 400.0
|
|
4810
4808
|
}
|
|
4811
4809
|
],
|
|
4812
|
-
"
|
|
4813
|
-
"
|
|
4810
|
+
"type": "stack",
|
|
4811
|
+
"direction": "vertical",
|
|
4812
|
+
"gap": "lg"
|
|
4814
4813
|
}
|
|
4815
|
-
]
|
|
4814
|
+
],
|
|
4815
|
+
"type": "scaled-diagram"
|
|
4816
4816
|
}
|
|
4817
4817
|
]
|
|
4818
4818
|
}
|
|
@@ -4829,8 +4829,8 @@
|
|
|
4829
4829
|
"Burndown",
|
|
4830
4830
|
{
|
|
4831
4831
|
"emit": {
|
|
4832
|
-
"
|
|
4833
|
-
"
|
|
4832
|
+
"success": "BurndownLoaded",
|
|
4833
|
+
"failure": "BurndownLoadFailed"
|
|
4834
4834
|
}
|
|
4835
4835
|
}
|
|
4836
4836
|
],
|
|
@@ -4838,14 +4838,31 @@
|
|
|
4838
4838
|
"render-ui",
|
|
4839
4839
|
"main",
|
|
4840
4840
|
{
|
|
4841
|
+
"appName": "ProjectManagerApp",
|
|
4842
|
+
"navItems": [
|
|
4843
|
+
{
|
|
4844
|
+
"icon": "check-square",
|
|
4845
|
+
"href": "/tasks",
|
|
4846
|
+
"label": "Tasks"
|
|
4847
|
+
},
|
|
4848
|
+
{
|
|
4849
|
+
"href": "/sprints",
|
|
4850
|
+
"icon": "zap",
|
|
4851
|
+
"label": "Sprints"
|
|
4852
|
+
},
|
|
4853
|
+
{
|
|
4854
|
+
"icon": "layout-list",
|
|
4855
|
+
"href": "/burndown",
|
|
4856
|
+
"label": "Burndown"
|
|
4857
|
+
}
|
|
4858
|
+
],
|
|
4859
|
+
"type": "dashboard-layout",
|
|
4841
4860
|
"children": [
|
|
4842
4861
|
{
|
|
4843
4862
|
"type": "scaled-diagram",
|
|
4844
4863
|
"children": [
|
|
4845
4864
|
{
|
|
4846
|
-
"type": "stack",
|
|
4847
4865
|
"gap": "lg",
|
|
4848
|
-
"direction": "vertical",
|
|
4849
4866
|
"children": [
|
|
4850
4867
|
{
|
|
4851
4868
|
"type": "breadcrumb",
|
|
@@ -4860,35 +4877,35 @@
|
|
|
4860
4877
|
]
|
|
4861
4878
|
},
|
|
4862
4879
|
{
|
|
4863
|
-
"type": "stack",
|
|
4864
|
-
"direction": "horizontal",
|
|
4865
|
-
"justify": "between",
|
|
4866
|
-
"gap": "md",
|
|
4867
4880
|
"children": [
|
|
4868
4881
|
{
|
|
4869
4882
|
"direction": "horizontal",
|
|
4870
4883
|
"gap": "md",
|
|
4884
|
+
"type": "stack",
|
|
4871
4885
|
"children": [
|
|
4872
4886
|
{
|
|
4873
|
-
"
|
|
4874
|
-
"
|
|
4887
|
+
"type": "icon",
|
|
4888
|
+
"name": "trending-down"
|
|
4875
4889
|
},
|
|
4876
4890
|
{
|
|
4877
|
-
"
|
|
4891
|
+
"content": "Burndown Chart",
|
|
4878
4892
|
"variant": "h2",
|
|
4879
|
-
"
|
|
4893
|
+
"type": "typography"
|
|
4880
4894
|
}
|
|
4881
|
-
]
|
|
4882
|
-
"type": "stack"
|
|
4895
|
+
]
|
|
4883
4896
|
},
|
|
4884
4897
|
{
|
|
4885
|
-
"icon": "refresh-cw",
|
|
4886
4898
|
"label": "Refresh",
|
|
4899
|
+
"icon": "refresh-cw",
|
|
4887
4900
|
"variant": "secondary",
|
|
4888
4901
|
"type": "button",
|
|
4889
4902
|
"action": "REFRESH"
|
|
4890
4903
|
}
|
|
4891
|
-
]
|
|
4904
|
+
],
|
|
4905
|
+
"direction": "horizontal",
|
|
4906
|
+
"gap": "md",
|
|
4907
|
+
"type": "stack",
|
|
4908
|
+
"justify": "between"
|
|
4892
4909
|
},
|
|
4893
4910
|
{
|
|
4894
4911
|
"type": "divider"
|
|
@@ -4898,17 +4915,16 @@
|
|
|
4898
4915
|
"type": "box",
|
|
4899
4916
|
"children": [
|
|
4900
4917
|
{
|
|
4901
|
-
"type": "simple-grid",
|
|
4902
4918
|
"cols": 5.0,
|
|
4903
4919
|
"children": [
|
|
4904
4920
|
{
|
|
4905
|
-
"label": "TotalPoints",
|
|
4906
4921
|
"type": "stat-display",
|
|
4922
|
+
"label": "TotalPoints",
|
|
4907
4923
|
"value": "@entity.totalPoints"
|
|
4908
4924
|
},
|
|
4909
4925
|
{
|
|
4910
|
-
"label": "CompletedPoints",
|
|
4911
4926
|
"value": "@entity.completedPoints",
|
|
4927
|
+
"label": "CompletedPoints",
|
|
4912
4928
|
"type": "stat-display"
|
|
4913
4929
|
},
|
|
4914
4930
|
{
|
|
@@ -4922,11 +4938,12 @@
|
|
|
4922
4938
|
"type": "stat-display"
|
|
4923
4939
|
},
|
|
4924
4940
|
{
|
|
4941
|
+
"type": "stat-display",
|
|
4925
4942
|
"label": "DaysRemaining",
|
|
4926
|
-
"value": "@entity.daysRemaining"
|
|
4927
|
-
"type": "stat-display"
|
|
4943
|
+
"value": "@entity.daysRemaining"
|
|
4928
4944
|
}
|
|
4929
|
-
]
|
|
4945
|
+
],
|
|
4946
|
+
"type": "simple-grid"
|
|
4930
4947
|
}
|
|
4931
4948
|
]
|
|
4932
4949
|
},
|
|
@@ -4934,31 +4951,31 @@
|
|
|
4934
4951
|
"type": "divider"
|
|
4935
4952
|
},
|
|
4936
4953
|
{
|
|
4937
|
-
"gap": "md",
|
|
4938
|
-
"cols": 2.0,
|
|
4939
4954
|
"type": "grid",
|
|
4940
4955
|
"children": [
|
|
4941
4956
|
{
|
|
4942
4957
|
"type": "card",
|
|
4943
4958
|
"children": [
|
|
4944
4959
|
{
|
|
4945
|
-
"
|
|
4960
|
+
"variant": "caption",
|
|
4946
4961
|
"content": "Chart View",
|
|
4947
|
-
"
|
|
4962
|
+
"type": "typography"
|
|
4948
4963
|
}
|
|
4949
4964
|
]
|
|
4950
4965
|
},
|
|
4951
4966
|
{
|
|
4952
4967
|
"children": [
|
|
4953
4968
|
{
|
|
4954
|
-
"variant": "caption",
|
|
4955
4969
|
"content": "Graph View",
|
|
4956
|
-
"type": "typography"
|
|
4970
|
+
"type": "typography",
|
|
4971
|
+
"variant": "caption"
|
|
4957
4972
|
}
|
|
4958
4973
|
],
|
|
4959
4974
|
"type": "card"
|
|
4960
4975
|
}
|
|
4961
|
-
]
|
|
4976
|
+
],
|
|
4977
|
+
"gap": "md",
|
|
4978
|
+
"cols": 2.0
|
|
4962
4979
|
},
|
|
4963
4980
|
{
|
|
4964
4981
|
"data": [
|
|
@@ -4975,12 +4992,12 @@
|
|
|
4975
4992
|
"date": "Mar"
|
|
4976
4993
|
},
|
|
4977
4994
|
{
|
|
4978
|
-
"
|
|
4979
|
-
"
|
|
4995
|
+
"date": "Apr",
|
|
4996
|
+
"value": 25.0
|
|
4980
4997
|
},
|
|
4981
4998
|
{
|
|
4982
|
-
"
|
|
4983
|
-
"
|
|
4999
|
+
"value": 22.0,
|
|
5000
|
+
"date": "May"
|
|
4984
5001
|
},
|
|
4985
5002
|
{
|
|
4986
5003
|
"date": "Jun",
|
|
@@ -4990,19 +5007,30 @@
|
|
|
4990
5007
|
"type": "line-chart"
|
|
4991
5008
|
},
|
|
4992
5009
|
{
|
|
5010
|
+
"type": "chart-legend",
|
|
4993
5011
|
"items": [
|
|
4994
5012
|
{
|
|
4995
5013
|
"label": "Current",
|
|
4996
5014
|
"color": "primary"
|
|
4997
5015
|
},
|
|
4998
5016
|
{
|
|
4999
|
-
"
|
|
5000
|
-
"
|
|
5017
|
+
"label": "Previous",
|
|
5018
|
+
"color": "muted"
|
|
5001
5019
|
}
|
|
5002
|
-
]
|
|
5003
|
-
"type": "chart-legend"
|
|
5020
|
+
]
|
|
5004
5021
|
},
|
|
5005
5022
|
{
|
|
5023
|
+
"edges": [
|
|
5024
|
+
{
|
|
5025
|
+
"source": "a",
|
|
5026
|
+
"target": "b"
|
|
5027
|
+
},
|
|
5028
|
+
{
|
|
5029
|
+
"target": "c",
|
|
5030
|
+
"source": "b"
|
|
5031
|
+
}
|
|
5032
|
+
],
|
|
5033
|
+
"width": 400.0,
|
|
5006
5034
|
"nodes": [
|
|
5007
5035
|
{
|
|
5008
5036
|
"id": "a",
|
|
@@ -5017,44 +5045,16 @@
|
|
|
5017
5045
|
"label": "End"
|
|
5018
5046
|
}
|
|
5019
5047
|
],
|
|
5020
|
-
"width": 400.0,
|
|
5021
5048
|
"height": 200.0,
|
|
5022
|
-
"type": "graph-view"
|
|
5023
|
-
"edges": [
|
|
5024
|
-
{
|
|
5025
|
-
"target": "b",
|
|
5026
|
-
"source": "a"
|
|
5027
|
-
},
|
|
5028
|
-
{
|
|
5029
|
-
"source": "b",
|
|
5030
|
-
"target": "c"
|
|
5031
|
-
}
|
|
5032
|
-
]
|
|
5049
|
+
"type": "graph-view"
|
|
5033
5050
|
}
|
|
5034
|
-
]
|
|
5051
|
+
],
|
|
5052
|
+
"direction": "vertical",
|
|
5053
|
+
"type": "stack"
|
|
5035
5054
|
}
|
|
5036
5055
|
]
|
|
5037
5056
|
}
|
|
5038
|
-
]
|
|
5039
|
-
"navItems": [
|
|
5040
|
-
{
|
|
5041
|
-
"href": "/tasks",
|
|
5042
|
-
"label": "Tasks",
|
|
5043
|
-
"icon": "check-square"
|
|
5044
|
-
},
|
|
5045
|
-
{
|
|
5046
|
-
"label": "Sprints",
|
|
5047
|
-
"href": "/sprints",
|
|
5048
|
-
"icon": "zap"
|
|
5049
|
-
},
|
|
5050
|
-
{
|
|
5051
|
-
"icon": "layout-list",
|
|
5052
|
-
"label": "Burndown",
|
|
5053
|
-
"href": "/burndown"
|
|
5054
|
-
}
|
|
5055
|
-
],
|
|
5056
|
-
"appName": "ProjectManagerApp",
|
|
5057
|
-
"type": "dashboard-layout"
|
|
5057
|
+
]
|
|
5058
5058
|
}
|
|
5059
5059
|
]
|
|
5060
5060
|
]
|
|
@@ -5069,8 +5069,8 @@
|
|
|
5069
5069
|
"Burndown",
|
|
5070
5070
|
{
|
|
5071
5071
|
"emit": {
|
|
5072
|
-
"
|
|
5073
|
-
"
|
|
5072
|
+
"failure": "BurndownLoadFailed",
|
|
5073
|
+
"success": "BurndownLoaded"
|
|
5074
5074
|
}
|
|
5075
5075
|
}
|
|
5076
5076
|
],
|
|
@@ -5078,17 +5078,18 @@
|
|
|
5078
5078
|
"render-ui",
|
|
5079
5079
|
"main",
|
|
5080
5080
|
{
|
|
5081
|
+
"appName": "ProjectManagerApp",
|
|
5081
5082
|
"type": "dashboard-layout",
|
|
5082
5083
|
"navItems": [
|
|
5083
5084
|
{
|
|
5084
5085
|
"label": "Tasks",
|
|
5085
|
-
"
|
|
5086
|
-
"
|
|
5086
|
+
"href": "/tasks",
|
|
5087
|
+
"icon": "check-square"
|
|
5087
5088
|
},
|
|
5088
5089
|
{
|
|
5089
5090
|
"href": "/sprints",
|
|
5090
|
-
"
|
|
5091
|
-
"
|
|
5091
|
+
"label": "Sprints",
|
|
5092
|
+
"icon": "zap"
|
|
5092
5093
|
},
|
|
5093
5094
|
{
|
|
5094
5095
|
"icon": "layout-list",
|
|
@@ -5096,16 +5097,14 @@
|
|
|
5096
5097
|
"href": "/burndown"
|
|
5097
5098
|
}
|
|
5098
5099
|
],
|
|
5099
|
-
"appName": "ProjectManagerApp",
|
|
5100
5100
|
"children": [
|
|
5101
5101
|
{
|
|
5102
|
-
"type": "scaled-diagram",
|
|
5103
5102
|
"children": [
|
|
5104
5103
|
{
|
|
5105
|
-
"
|
|
5106
|
-
"type": "stack",
|
|
5104
|
+
"direction": "vertical",
|
|
5107
5105
|
"children": [
|
|
5108
5106
|
{
|
|
5107
|
+
"type": "breadcrumb",
|
|
5109
5108
|
"items": [
|
|
5110
5109
|
{
|
|
5111
5110
|
"label": "Home",
|
|
@@ -5114,13 +5113,14 @@
|
|
|
5114
5113
|
{
|
|
5115
5114
|
"label": "Burndown Chart"
|
|
5116
5115
|
}
|
|
5117
|
-
]
|
|
5118
|
-
"type": "breadcrumb"
|
|
5116
|
+
]
|
|
5119
5117
|
},
|
|
5120
5118
|
{
|
|
5119
|
+
"direction": "horizontal",
|
|
5120
|
+
"justify": "between",
|
|
5121
|
+
"type": "stack",
|
|
5121
5122
|
"children": [
|
|
5122
5123
|
{
|
|
5123
|
-
"type": "stack",
|
|
5124
5124
|
"gap": "md",
|
|
5125
5125
|
"children": [
|
|
5126
5126
|
{
|
|
@@ -5133,97 +5133,95 @@
|
|
|
5133
5133
|
"variant": "h2"
|
|
5134
5134
|
}
|
|
5135
5135
|
],
|
|
5136
|
+
"type": "stack",
|
|
5136
5137
|
"direction": "horizontal"
|
|
5137
5138
|
},
|
|
5138
5139
|
{
|
|
5139
|
-
"icon": "refresh-cw",
|
|
5140
|
-
"type": "button",
|
|
5141
5140
|
"label": "Refresh",
|
|
5141
|
+
"variant": "secondary",
|
|
5142
|
+
"type": "button",
|
|
5142
5143
|
"action": "REFRESH",
|
|
5143
|
-
"
|
|
5144
|
+
"icon": "refresh-cw"
|
|
5144
5145
|
}
|
|
5145
5146
|
],
|
|
5146
|
-
"
|
|
5147
|
-
"direction": "horizontal",
|
|
5148
|
-
"gap": "md",
|
|
5149
|
-
"justify": "between"
|
|
5147
|
+
"gap": "md"
|
|
5150
5148
|
},
|
|
5151
5149
|
{
|
|
5152
5150
|
"type": "divider"
|
|
5153
5151
|
},
|
|
5154
5152
|
{
|
|
5153
|
+
"type": "box",
|
|
5155
5154
|
"padding": "md",
|
|
5156
5155
|
"children": [
|
|
5157
5156
|
{
|
|
5158
|
-
"type": "simple-grid",
|
|
5159
5157
|
"cols": 5.0,
|
|
5160
5158
|
"children": [
|
|
5161
5159
|
{
|
|
5162
|
-
"type": "stat-display",
|
|
5163
5160
|
"value": "@entity.totalPoints",
|
|
5164
|
-
"label": "TotalPoints"
|
|
5161
|
+
"label": "TotalPoints",
|
|
5162
|
+
"type": "stat-display"
|
|
5165
5163
|
},
|
|
5166
5164
|
{
|
|
5167
|
-
"label": "CompletedPoints",
|
|
5168
5165
|
"value": "@entity.completedPoints",
|
|
5169
|
-
"type": "stat-display"
|
|
5166
|
+
"type": "stat-display",
|
|
5167
|
+
"label": "CompletedPoints"
|
|
5170
5168
|
},
|
|
5171
5169
|
{
|
|
5172
|
-
"label": "RemainingPoints",
|
|
5173
5170
|
"type": "stat-display",
|
|
5171
|
+
"label": "RemainingPoints",
|
|
5174
5172
|
"value": "@entity.remainingPoints"
|
|
5175
5173
|
},
|
|
5176
5174
|
{
|
|
5175
|
+
"label": "Velocity",
|
|
5177
5176
|
"value": "@entity.velocity",
|
|
5178
|
-
"type": "stat-display"
|
|
5179
|
-
"label": "Velocity"
|
|
5177
|
+
"type": "stat-display"
|
|
5180
5178
|
},
|
|
5181
5179
|
{
|
|
5182
5180
|
"type": "stat-display",
|
|
5183
5181
|
"label": "DaysRemaining",
|
|
5184
5182
|
"value": "@entity.daysRemaining"
|
|
5185
5183
|
}
|
|
5186
|
-
]
|
|
5184
|
+
],
|
|
5185
|
+
"type": "simple-grid"
|
|
5187
5186
|
}
|
|
5188
|
-
]
|
|
5189
|
-
"type": "box"
|
|
5187
|
+
]
|
|
5190
5188
|
},
|
|
5191
5189
|
{
|
|
5192
5190
|
"type": "divider"
|
|
5193
5191
|
},
|
|
5194
5192
|
{
|
|
5195
|
-
"gap": "md",
|
|
5196
5193
|
"type": "grid",
|
|
5197
5194
|
"children": [
|
|
5198
5195
|
{
|
|
5199
|
-
"type": "card",
|
|
5200
5196
|
"children": [
|
|
5201
5197
|
{
|
|
5202
5198
|
"content": "Chart View",
|
|
5203
5199
|
"type": "typography",
|
|
5204
5200
|
"variant": "caption"
|
|
5205
5201
|
}
|
|
5206
|
-
]
|
|
5202
|
+
],
|
|
5203
|
+
"type": "card"
|
|
5207
5204
|
},
|
|
5208
5205
|
{
|
|
5206
|
+
"type": "card",
|
|
5209
5207
|
"children": [
|
|
5210
5208
|
{
|
|
5211
5209
|
"variant": "caption",
|
|
5212
5210
|
"type": "typography",
|
|
5213
5211
|
"content": "Graph View"
|
|
5214
5212
|
}
|
|
5215
|
-
]
|
|
5216
|
-
"type": "card"
|
|
5213
|
+
]
|
|
5217
5214
|
}
|
|
5218
5215
|
],
|
|
5216
|
+
"gap": "md",
|
|
5219
5217
|
"cols": 2.0
|
|
5220
5218
|
},
|
|
5221
5219
|
{
|
|
5222
5220
|
"type": "line-chart",
|
|
5223
5221
|
"data": [
|
|
5224
5222
|
{
|
|
5225
|
-
"
|
|
5226
|
-
"
|
|
5223
|
+
"value": 12.0,
|
|
5224
|
+
"date": "Jan"
|
|
5227
5225
|
},
|
|
5228
5226
|
{
|
|
5229
5227
|
"value": 19.0,
|
|
@@ -5238,35 +5236,45 @@
|
|
|
5238
5236
|
"value": 25.0
|
|
5239
5237
|
},
|
|
5240
5238
|
{
|
|
5241
|
-
"
|
|
5242
|
-
"
|
|
5239
|
+
"date": "May",
|
|
5240
|
+
"value": 22.0
|
|
5243
5241
|
},
|
|
5244
5242
|
{
|
|
5245
|
-
"
|
|
5246
|
-
"
|
|
5243
|
+
"value": 30.0,
|
|
5244
|
+
"date": "Jun"
|
|
5247
5245
|
}
|
|
5248
5246
|
]
|
|
5249
5247
|
},
|
|
5250
5248
|
{
|
|
5251
|
-
"type": "chart-legend",
|
|
5252
5249
|
"items": [
|
|
5253
5250
|
{
|
|
5254
5251
|
"label": "Current",
|
|
5255
5252
|
"color": "primary"
|
|
5256
5253
|
},
|
|
5257
5254
|
{
|
|
5258
|
-
"
|
|
5259
|
-
"
|
|
5255
|
+
"color": "muted",
|
|
5256
|
+
"label": "Previous"
|
|
5260
5257
|
}
|
|
5261
|
-
]
|
|
5258
|
+
],
|
|
5259
|
+
"type": "chart-legend"
|
|
5262
5260
|
},
|
|
5263
5261
|
{
|
|
5264
|
-
"
|
|
5262
|
+
"edges": [
|
|
5263
|
+
{
|
|
5264
|
+
"target": "b",
|
|
5265
|
+
"source": "a"
|
|
5266
|
+
},
|
|
5267
|
+
{
|
|
5268
|
+
"target": "c",
|
|
5269
|
+
"source": "b"
|
|
5270
|
+
}
|
|
5271
|
+
],
|
|
5272
|
+
"width": 400.0,
|
|
5265
5273
|
"height": 200.0,
|
|
5266
5274
|
"nodes": [
|
|
5267
5275
|
{
|
|
5268
|
-
"
|
|
5269
|
-
"
|
|
5276
|
+
"id": "a",
|
|
5277
|
+
"label": "Start"
|
|
5270
5278
|
},
|
|
5271
5279
|
{
|
|
5272
5280
|
"id": "b",
|
|
@@ -5277,22 +5285,14 @@
|
|
|
5277
5285
|
"label": "End"
|
|
5278
5286
|
}
|
|
5279
5287
|
],
|
|
5280
|
-
"
|
|
5281
|
-
"edges": [
|
|
5282
|
-
{
|
|
5283
|
-
"target": "b",
|
|
5284
|
-
"source": "a"
|
|
5285
|
-
},
|
|
5286
|
-
{
|
|
5287
|
-
"source": "b",
|
|
5288
|
-
"target": "c"
|
|
5289
|
-
}
|
|
5290
|
-
]
|
|
5288
|
+
"type": "graph-view"
|
|
5291
5289
|
}
|
|
5292
5290
|
],
|
|
5293
|
-
"
|
|
5291
|
+
"type": "stack",
|
|
5292
|
+
"gap": "lg"
|
|
5294
5293
|
}
|
|
5295
|
-
]
|
|
5294
|
+
],
|
|
5295
|
+
"type": "scaled-diagram"
|
|
5296
5296
|
}
|
|
5297
5297
|
]
|
|
5298
5298
|
}
|
|
@@ -5318,71 +5318,73 @@
|
|
|
5318
5318
|
"render-ui",
|
|
5319
5319
|
"main",
|
|
5320
5320
|
{
|
|
5321
|
+
"appName": "ProjectManagerApp",
|
|
5322
|
+
"type": "dashboard-layout",
|
|
5321
5323
|
"navItems": [
|
|
5322
5324
|
{
|
|
5323
5325
|
"icon": "check-square",
|
|
5324
|
-
"
|
|
5325
|
-
"
|
|
5326
|
+
"href": "/tasks",
|
|
5327
|
+
"label": "Tasks"
|
|
5326
5328
|
},
|
|
5327
5329
|
{
|
|
5328
5330
|
"label": "Sprints",
|
|
5329
|
-
"
|
|
5330
|
-
"
|
|
5331
|
+
"icon": "zap",
|
|
5332
|
+
"href": "/sprints"
|
|
5331
5333
|
},
|
|
5332
5334
|
{
|
|
5333
|
-
"
|
|
5335
|
+
"icon": "layout-list",
|
|
5334
5336
|
"href": "/burndown",
|
|
5335
|
-
"
|
|
5337
|
+
"label": "Burndown"
|
|
5336
5338
|
}
|
|
5337
5339
|
],
|
|
5338
|
-
"appName": "ProjectManagerApp",
|
|
5339
5340
|
"children": [
|
|
5340
5341
|
{
|
|
5341
5342
|
"children": [
|
|
5342
5343
|
{
|
|
5343
5344
|
"direction": "vertical",
|
|
5345
|
+
"gap": "lg",
|
|
5344
5346
|
"children": [
|
|
5345
5347
|
{
|
|
5348
|
+
"type": "breadcrumb",
|
|
5346
5349
|
"items": [
|
|
5347
5350
|
{
|
|
5348
|
-
"
|
|
5349
|
-
"
|
|
5351
|
+
"href": "/",
|
|
5352
|
+
"label": "Home"
|
|
5350
5353
|
},
|
|
5351
5354
|
{
|
|
5352
5355
|
"label": "Burndown Chart"
|
|
5353
5356
|
}
|
|
5354
|
-
]
|
|
5355
|
-
"type": "breadcrumb"
|
|
5357
|
+
]
|
|
5356
5358
|
},
|
|
5357
5359
|
{
|
|
5358
5360
|
"direction": "horizontal",
|
|
5359
|
-
"justify": "between",
|
|
5360
5361
|
"children": [
|
|
5361
5362
|
{
|
|
5362
|
-
"gap": "md",
|
|
5363
|
-
"direction": "horizontal",
|
|
5364
|
-
"type": "stack",
|
|
5365
5363
|
"children": [
|
|
5366
5364
|
{
|
|
5367
5365
|
"type": "icon",
|
|
5368
5366
|
"name": "trending-down"
|
|
5369
5367
|
},
|
|
5370
5368
|
{
|
|
5371
|
-
"type": "typography",
|
|
5372
5369
|
"content": "Burndown Chart",
|
|
5373
|
-
"variant": "h2"
|
|
5370
|
+
"variant": "h2",
|
|
5371
|
+
"type": "typography"
|
|
5374
5372
|
}
|
|
5375
|
-
]
|
|
5373
|
+
],
|
|
5374
|
+
"gap": "md",
|
|
5375
|
+
"type": "stack",
|
|
5376
|
+
"direction": "horizontal"
|
|
5376
5377
|
},
|
|
5377
5378
|
{
|
|
5378
|
-
"action": "REFRESH",
|
|
5379
|
-
"icon": "refresh-cw",
|
|
5380
5379
|
"type": "button",
|
|
5380
|
+
"action": "REFRESH",
|
|
5381
5381
|
"label": "Refresh",
|
|
5382
|
-
"variant": "secondary"
|
|
5382
|
+
"variant": "secondary",
|
|
5383
|
+
"icon": "refresh-cw"
|
|
5383
5384
|
}
|
|
5384
5385
|
],
|
|
5385
5386
|
"type": "stack",
|
|
5387
|
+
"justify": "between",
|
|
5386
5388
|
"gap": "md"
|
|
5387
5389
|
},
|
|
5388
5390
|
{
|
|
@@ -5397,14 +5399,14 @@
|
|
|
5397
5399
|
"type": "simple-grid",
|
|
5398
5400
|
"children": [
|
|
5399
5401
|
{
|
|
5400
|
-
"type": "stat-display",
|
|
5401
5402
|
"label": "TotalPoints",
|
|
5402
|
-
"value": "@entity.totalPoints"
|
|
5403
|
+
"value": "@entity.totalPoints",
|
|
5404
|
+
"type": "stat-display"
|
|
5403
5405
|
},
|
|
5404
5406
|
{
|
|
5407
|
+
"value": "@entity.completedPoints",
|
|
5405
5408
|
"type": "stat-display",
|
|
5406
|
-
"label": "CompletedPoints"
|
|
5407
|
-
"value": "@entity.completedPoints"
|
|
5409
|
+
"label": "CompletedPoints"
|
|
5408
5410
|
},
|
|
5409
5411
|
{
|
|
5410
5412
|
"value": "@entity.remainingPoints",
|
|
@@ -5412,9 +5414,9 @@
|
|
|
5412
5414
|
"label": "RemainingPoints"
|
|
5413
5415
|
},
|
|
5414
5416
|
{
|
|
5415
|
-
"type": "stat-display",
|
|
5416
5417
|
"label": "Velocity",
|
|
5417
|
-
"value": "@entity.velocity"
|
|
5418
|
+
"value": "@entity.velocity",
|
|
5419
|
+
"type": "stat-display"
|
|
5418
5420
|
},
|
|
5419
5421
|
{
|
|
5420
5422
|
"type": "stat-display",
|
|
@@ -5429,33 +5431,34 @@
|
|
|
5429
5431
|
"type": "divider"
|
|
5430
5432
|
},
|
|
5431
5433
|
{
|
|
5432
|
-
"gap": "md",
|
|
5433
5434
|
"type": "grid",
|
|
5434
|
-
"cols": 2.0,
|
|
5435
5435
|
"children": [
|
|
5436
5436
|
{
|
|
5437
|
-
"type": "card",
|
|
5438
5437
|
"children": [
|
|
5439
5438
|
{
|
|
5440
5439
|
"variant": "caption",
|
|
5441
5440
|
"type": "typography",
|
|
5442
5441
|
"content": "Chart View"
|
|
5443
5442
|
}
|
|
5444
|
-
]
|
|
5443
|
+
],
|
|
5444
|
+
"type": "card"
|
|
5445
5445
|
},
|
|
5446
5446
|
{
|
|
5447
5447
|
"type": "card",
|
|
5448
5448
|
"children": [
|
|
5449
5449
|
{
|
|
5450
|
-
"type": "typography",
|
|
5451
5450
|
"variant": "caption",
|
|
5452
|
-
"content": "Graph View"
|
|
5451
|
+
"content": "Graph View",
|
|
5452
|
+
"type": "typography"
|
|
5453
5453
|
}
|
|
5454
5454
|
]
|
|
5455
5455
|
}
|
|
5456
|
-
]
|
|
5456
|
+
],
|
|
5457
|
+
"cols": 2.0,
|
|
5458
|
+
"gap": "md"
|
|
5457
5459
|
},
|
|
5458
5460
|
{
|
|
5461
|
+
"type": "line-chart",
|
|
5459
5462
|
"data": [
|
|
5460
5463
|
{
|
|
5461
5464
|
"date": "Jan",
|
|
@@ -5466,23 +5469,22 @@
|
|
|
5466
5469
|
"value": 19.0
|
|
5467
5470
|
},
|
|
5468
5471
|
{
|
|
5469
|
-
"
|
|
5470
|
-
"
|
|
5472
|
+
"value": 15.0,
|
|
5473
|
+
"date": "Mar"
|
|
5471
5474
|
},
|
|
5472
5475
|
{
|
|
5473
5476
|
"date": "Apr",
|
|
5474
5477
|
"value": 25.0
|
|
5475
5478
|
},
|
|
5476
5479
|
{
|
|
5477
|
-
"
|
|
5478
|
-
"
|
|
5480
|
+
"value": 22.0,
|
|
5481
|
+
"date": "May"
|
|
5479
5482
|
},
|
|
5480
5483
|
{
|
|
5481
5484
|
"value": 30.0,
|
|
5482
5485
|
"date": "Jun"
|
|
5483
5486
|
}
|
|
5484
|
-
]
|
|
5485
|
-
"type": "line-chart"
|
|
5487
|
+
]
|
|
5486
5488
|
},
|
|
5487
5489
|
{
|
|
5488
5490
|
"items": [
|
|
@@ -5491,50 +5493,48 @@
|
|
|
5491
5493
|
"color": "primary"
|
|
5492
5494
|
},
|
|
5493
5495
|
{
|
|
5494
|
-
"
|
|
5495
|
-
"
|
|
5496
|
+
"label": "Previous",
|
|
5497
|
+
"color": "muted"
|
|
5496
5498
|
}
|
|
5497
5499
|
],
|
|
5498
5500
|
"type": "chart-legend"
|
|
5499
5501
|
},
|
|
5500
5502
|
{
|
|
5501
5503
|
"height": 200.0,
|
|
5504
|
+
"type": "graph-view",
|
|
5502
5505
|
"edges": [
|
|
5503
5506
|
{
|
|
5504
|
-
"
|
|
5505
|
-
"
|
|
5507
|
+
"source": "a",
|
|
5508
|
+
"target": "b"
|
|
5506
5509
|
},
|
|
5507
5510
|
{
|
|
5508
|
-
"
|
|
5509
|
-
"
|
|
5511
|
+
"source": "b",
|
|
5512
|
+
"target": "c"
|
|
5510
5513
|
}
|
|
5511
5514
|
],
|
|
5512
|
-
"
|
|
5515
|
+
"width": 400.0,
|
|
5513
5516
|
"nodes": [
|
|
5514
5517
|
{
|
|
5515
5518
|
"label": "Start",
|
|
5516
5519
|
"id": "a"
|
|
5517
5520
|
},
|
|
5518
5521
|
{
|
|
5519
|
-
"
|
|
5520
|
-
"
|
|
5522
|
+
"id": "b",
|
|
5523
|
+
"label": "Process"
|
|
5521
5524
|
},
|
|
5522
5525
|
{
|
|
5523
|
-
"
|
|
5524
|
-
"
|
|
5526
|
+
"label": "End",
|
|
5527
|
+
"id": "c"
|
|
5525
5528
|
}
|
|
5526
|
-
]
|
|
5527
|
-
"width": 400.0
|
|
5529
|
+
]
|
|
5528
5530
|
}
|
|
5529
5531
|
],
|
|
5530
|
-
"type": "stack"
|
|
5531
|
-
"gap": "lg"
|
|
5532
|
+
"type": "stack"
|
|
5532
5533
|
}
|
|
5533
5534
|
],
|
|
5534
5535
|
"type": "scaled-diagram"
|
|
5535
5536
|
}
|
|
5536
|
-
]
|
|
5537
|
-
"type": "dashboard-layout"
|
|
5537
|
+
]
|
|
5538
5538
|
}
|
|
5539
5539
|
]
|
|
5540
5540
|
]
|
|
@@ -5549,8 +5549,8 @@
|
|
|
5549
5549
|
"Burndown",
|
|
5550
5550
|
{
|
|
5551
5551
|
"emit": {
|
|
5552
|
-
"
|
|
5553
|
-
"
|
|
5552
|
+
"failure": "BurndownLoadFailed",
|
|
5553
|
+
"success": "BurndownLoaded"
|
|
5554
5554
|
}
|
|
5555
5555
|
}
|
|
5556
5556
|
],
|
|
@@ -5558,11 +5558,12 @@
|
|
|
5558
5558
|
"render-ui",
|
|
5559
5559
|
"main",
|
|
5560
5560
|
{
|
|
5561
|
+
"type": "dashboard-layout",
|
|
5561
5562
|
"navItems": [
|
|
5562
5563
|
{
|
|
5563
|
-
"
|
|
5564
|
+
"href": "/tasks",
|
|
5564
5565
|
"label": "Tasks",
|
|
5565
|
-
"
|
|
5566
|
+
"icon": "check-square"
|
|
5566
5567
|
},
|
|
5567
5568
|
{
|
|
5568
5569
|
"href": "/sprints",
|
|
@@ -5570,26 +5571,22 @@
|
|
|
5570
5571
|
"label": "Sprints"
|
|
5571
5572
|
},
|
|
5572
5573
|
{
|
|
5573
|
-
"href": "/burndown",
|
|
5574
5574
|
"label": "Burndown",
|
|
5575
|
+
"href": "/burndown",
|
|
5575
5576
|
"icon": "layout-list"
|
|
5576
5577
|
}
|
|
5577
5578
|
],
|
|
5578
|
-
"type": "dashboard-layout",
|
|
5579
|
-
"appName": "ProjectManagerApp",
|
|
5580
5579
|
"children": [
|
|
5581
5580
|
{
|
|
5582
5581
|
"type": "scaled-diagram",
|
|
5583
5582
|
"children": [
|
|
5584
5583
|
{
|
|
5585
|
-
"gap": "lg",
|
|
5586
|
-
"type": "stack",
|
|
5587
5584
|
"children": [
|
|
5588
5585
|
{
|
|
5589
5586
|
"items": [
|
|
5590
5587
|
{
|
|
5591
|
-
"
|
|
5592
|
-
"
|
|
5588
|
+
"href": "/",
|
|
5589
|
+
"label": "Home"
|
|
5593
5590
|
},
|
|
5594
5591
|
{
|
|
5595
5592
|
"label": "Burndown Chart"
|
|
@@ -5602,31 +5599,31 @@
|
|
|
5602
5599
|
"justify": "between",
|
|
5603
5600
|
"children": [
|
|
5604
5601
|
{
|
|
5605
|
-
"direction": "horizontal",
|
|
5606
|
-
"type": "stack",
|
|
5607
5602
|
"gap": "md",
|
|
5603
|
+
"type": "stack",
|
|
5604
|
+
"direction": "horizontal",
|
|
5608
5605
|
"children": [
|
|
5609
5606
|
{
|
|
5610
5607
|
"type": "icon",
|
|
5611
5608
|
"name": "trending-down"
|
|
5612
5609
|
},
|
|
5613
5610
|
{
|
|
5614
|
-
"content": "Burndown Chart",
|
|
5615
5611
|
"type": "typography",
|
|
5616
|
-
"variant": "h2"
|
|
5612
|
+
"variant": "h2",
|
|
5613
|
+
"content": "Burndown Chart"
|
|
5617
5614
|
}
|
|
5618
5615
|
]
|
|
5619
5616
|
},
|
|
5620
5617
|
{
|
|
5621
|
-
"action": "REFRESH",
|
|
5622
|
-
"variant": "secondary",
|
|
5623
5618
|
"icon": "refresh-cw",
|
|
5624
|
-
"
|
|
5625
|
-
"
|
|
5619
|
+
"label": "Refresh",
|
|
5620
|
+
"variant": "secondary",
|
|
5621
|
+
"action": "REFRESH",
|
|
5622
|
+
"type": "button"
|
|
5626
5623
|
}
|
|
5627
5624
|
],
|
|
5628
|
-
"
|
|
5629
|
-
"
|
|
5625
|
+
"gap": "md",
|
|
5626
|
+
"direction": "horizontal"
|
|
5630
5627
|
},
|
|
5631
5628
|
{
|
|
5632
5629
|
"type": "divider"
|
|
@@ -5639,23 +5636,23 @@
|
|
|
5639
5636
|
"children": [
|
|
5640
5637
|
{
|
|
5641
5638
|
"label": "TotalPoints",
|
|
5642
|
-
"
|
|
5643
|
-
"
|
|
5639
|
+
"type": "stat-display",
|
|
5640
|
+
"value": "@entity.totalPoints"
|
|
5644
5641
|
},
|
|
5645
5642
|
{
|
|
5643
|
+
"value": "@entity.completedPoints",
|
|
5646
5644
|
"type": "stat-display",
|
|
5647
|
-
"label": "CompletedPoints"
|
|
5648
|
-
"value": "@entity.completedPoints"
|
|
5645
|
+
"label": "CompletedPoints"
|
|
5649
5646
|
},
|
|
5650
5647
|
{
|
|
5651
5648
|
"label": "RemainingPoints",
|
|
5652
|
-
"
|
|
5653
|
-
"
|
|
5649
|
+
"value": "@entity.remainingPoints",
|
|
5650
|
+
"type": "stat-display"
|
|
5654
5651
|
},
|
|
5655
5652
|
{
|
|
5656
5653
|
"label": "Velocity",
|
|
5657
|
-
"
|
|
5658
|
-
"
|
|
5654
|
+
"type": "stat-display",
|
|
5655
|
+
"value": "@entity.velocity"
|
|
5659
5656
|
},
|
|
5660
5657
|
{
|
|
5661
5658
|
"type": "stat-display",
|
|
@@ -5663,8 +5660,8 @@
|
|
|
5663
5660
|
"value": "@entity.daysRemaining"
|
|
5664
5661
|
}
|
|
5665
5662
|
],
|
|
5666
|
-
"
|
|
5667
|
-
"
|
|
5663
|
+
"cols": 5.0,
|
|
5664
|
+
"type": "simple-grid"
|
|
5668
5665
|
}
|
|
5669
5666
|
]
|
|
5670
5667
|
},
|
|
@@ -5672,54 +5669,54 @@
|
|
|
5672
5669
|
"type": "divider"
|
|
5673
5670
|
},
|
|
5674
5671
|
{
|
|
5675
|
-
"
|
|
5676
|
-
"type": "grid",
|
|
5672
|
+
"cols": 2.0,
|
|
5677
5673
|
"children": [
|
|
5678
5674
|
{
|
|
5679
5675
|
"type": "card",
|
|
5680
5676
|
"children": [
|
|
5681
5677
|
{
|
|
5682
|
-
"
|
|
5678
|
+
"content": "Chart View",
|
|
5683
5679
|
"variant": "caption",
|
|
5684
|
-
"
|
|
5680
|
+
"type": "typography"
|
|
5685
5681
|
}
|
|
5686
5682
|
]
|
|
5687
5683
|
},
|
|
5688
5684
|
{
|
|
5689
5685
|
"children": [
|
|
5690
5686
|
{
|
|
5687
|
+
"content": "Graph View",
|
|
5691
5688
|
"type": "typography",
|
|
5692
|
-
"variant": "caption"
|
|
5693
|
-
"content": "Graph View"
|
|
5689
|
+
"variant": "caption"
|
|
5694
5690
|
}
|
|
5695
5691
|
],
|
|
5696
5692
|
"type": "card"
|
|
5697
5693
|
}
|
|
5698
5694
|
],
|
|
5699
|
-
"
|
|
5695
|
+
"type": "grid",
|
|
5696
|
+
"gap": "md"
|
|
5700
5697
|
},
|
|
5701
5698
|
{
|
|
5702
5699
|
"type": "line-chart",
|
|
5703
5700
|
"data": [
|
|
5704
5701
|
{
|
|
5705
|
-
"
|
|
5706
|
-
"
|
|
5702
|
+
"value": 12.0,
|
|
5703
|
+
"date": "Jan"
|
|
5707
5704
|
},
|
|
5708
5705
|
{
|
|
5709
5706
|
"date": "Feb",
|
|
5710
5707
|
"value": 19.0
|
|
5711
5708
|
},
|
|
5712
5709
|
{
|
|
5713
|
-
"
|
|
5714
|
-
"
|
|
5710
|
+
"value": 15.0,
|
|
5711
|
+
"date": "Mar"
|
|
5715
5712
|
},
|
|
5716
5713
|
{
|
|
5717
|
-
"
|
|
5718
|
-
"
|
|
5714
|
+
"value": 25.0,
|
|
5715
|
+
"date": "Apr"
|
|
5719
5716
|
},
|
|
5720
5717
|
{
|
|
5721
|
-
"
|
|
5722
|
-
"
|
|
5718
|
+
"value": 22.0,
|
|
5719
|
+
"date": "May"
|
|
5723
5720
|
},
|
|
5724
5721
|
{
|
|
5725
5722
|
"value": 30.0,
|
|
@@ -5744,20 +5741,20 @@
|
|
|
5744
5741
|
"width": 400.0,
|
|
5745
5742
|
"edges": [
|
|
5746
5743
|
{
|
|
5747
|
-
"
|
|
5748
|
-
"
|
|
5744
|
+
"target": "b",
|
|
5745
|
+
"source": "a"
|
|
5749
5746
|
},
|
|
5750
5747
|
{
|
|
5751
|
-
"
|
|
5752
|
-
"
|
|
5748
|
+
"target": "c",
|
|
5749
|
+
"source": "b"
|
|
5753
5750
|
}
|
|
5754
5751
|
],
|
|
5755
5752
|
"type": "graph-view",
|
|
5756
5753
|
"height": 200.0,
|
|
5757
5754
|
"nodes": [
|
|
5758
5755
|
{
|
|
5759
|
-
"
|
|
5760
|
-
"
|
|
5756
|
+
"id": "a",
|
|
5757
|
+
"label": "Start"
|
|
5761
5758
|
},
|
|
5762
5759
|
{
|
|
5763
5760
|
"id": "b",
|
|
@@ -5770,11 +5767,14 @@
|
|
|
5770
5767
|
]
|
|
5771
5768
|
}
|
|
5772
5769
|
],
|
|
5773
|
-
"direction": "vertical"
|
|
5770
|
+
"direction": "vertical",
|
|
5771
|
+
"type": "stack",
|
|
5772
|
+
"gap": "lg"
|
|
5774
5773
|
}
|
|
5775
5774
|
]
|
|
5776
5775
|
}
|
|
5777
|
-
]
|
|
5776
|
+
],
|
|
5777
|
+
"appName": "ProjectManagerApp"
|
|
5778
5778
|
}
|
|
5779
5779
|
]
|
|
5780
5780
|
]
|