@almadar/std 14.29.1 → 14.29.2
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/core/atoms/std-event-log.orb +554 -278
- package/behaviors/registry/core/atoms/std-step-flow.orb +192 -188
- package/dist/behaviors/registry/core/atoms/std-event-log.orb +554 -278
- package/dist/behaviors/registry/core/atoms/std-step-flow.orb +192 -188
- package/package.json +1 -1
|
@@ -79,7 +79,11 @@
|
|
|
79
79
|
{
|
|
80
80
|
"name": "primaryActionVariant",
|
|
81
81
|
"type": "string",
|
|
82
|
-
"default": "primary"
|
|
82
|
+
"default": "primary",
|
|
83
|
+
"values": [
|
|
84
|
+
"primary",
|
|
85
|
+
"success"
|
|
86
|
+
]
|
|
83
87
|
},
|
|
84
88
|
{
|
|
85
89
|
"name": "primaryActionIcon",
|
|
@@ -344,8 +348,8 @@
|
|
|
344
348
|
"StepFlowView",
|
|
345
349
|
{
|
|
346
350
|
"emit": {
|
|
347
|
-
"
|
|
348
|
-
"
|
|
351
|
+
"success": "StepItemsLoaded",
|
|
352
|
+
"failure": "StepItemsLoadFailed"
|
|
349
353
|
}
|
|
350
354
|
}
|
|
351
355
|
],
|
|
@@ -387,12 +391,6 @@
|
|
|
387
391
|
"fn",
|
|
388
392
|
"step",
|
|
389
393
|
{
|
|
390
|
-
"description": [
|
|
391
|
-
"object/get",
|
|
392
|
-
"@step",
|
|
393
|
-
"description",
|
|
394
|
-
""
|
|
395
|
-
],
|
|
396
394
|
"id": [
|
|
397
395
|
"object/get",
|
|
398
396
|
"@step",
|
|
@@ -402,6 +400,12 @@
|
|
|
402
400
|
"object/get",
|
|
403
401
|
"@step",
|
|
404
402
|
"label"
|
|
403
|
+
],
|
|
404
|
+
"description": [
|
|
405
|
+
"object/get",
|
|
406
|
+
"@step",
|
|
407
|
+
"description",
|
|
408
|
+
""
|
|
405
409
|
]
|
|
406
410
|
}
|
|
407
411
|
]
|
|
@@ -526,42 +530,42 @@
|
|
|
526
530
|
"children": [
|
|
527
531
|
{
|
|
528
532
|
"direction": "horizontal",
|
|
533
|
+
"type": "stack",
|
|
534
|
+
"align": "center",
|
|
535
|
+
"gap": "sm",
|
|
529
536
|
"children": [
|
|
530
537
|
{
|
|
531
|
-
"
|
|
532
|
-
"
|
|
538
|
+
"name": "shield-check",
|
|
539
|
+
"type": "icon"
|
|
533
540
|
},
|
|
534
541
|
{
|
|
535
542
|
"content": "@config.title",
|
|
536
|
-
"
|
|
537
|
-
"
|
|
543
|
+
"variant": "h3",
|
|
544
|
+
"type": "typography"
|
|
538
545
|
}
|
|
539
|
-
]
|
|
540
|
-
"type": "stack",
|
|
541
|
-
"align": "center",
|
|
542
|
-
"gap": "sm"
|
|
546
|
+
]
|
|
543
547
|
},
|
|
544
548
|
{
|
|
549
|
+
"steps": "@entity.wizardSteps",
|
|
545
550
|
"type": "wizard-progress",
|
|
546
551
|
"currentStep": "@entity.currentStepIndex",
|
|
547
|
-
"steps": "@entity.wizardSteps",
|
|
548
552
|
"allowNavigation": false
|
|
549
553
|
},
|
|
550
554
|
{
|
|
551
|
-
"type": "card",
|
|
552
555
|
"children": [
|
|
553
556
|
{
|
|
557
|
+
"direction": "vertical",
|
|
554
558
|
"children": [
|
|
555
559
|
{
|
|
556
560
|
"type": "stack",
|
|
557
|
-
"gap": "sm",
|
|
558
|
-
"direction": "horizontal",
|
|
559
561
|
"align": "center",
|
|
562
|
+
"direction": "horizontal",
|
|
563
|
+
"gap": "sm",
|
|
560
564
|
"children": [
|
|
561
565
|
{
|
|
562
|
-
"
|
|
566
|
+
"size": "lg",
|
|
563
567
|
"name": "@entity.currentStepIcon",
|
|
564
|
-
"
|
|
568
|
+
"type": "icon"
|
|
565
569
|
},
|
|
566
570
|
{
|
|
567
571
|
"children": [
|
|
@@ -573,59 +577,59 @@
|
|
|
573
577
|
{
|
|
574
578
|
"type": "typography",
|
|
575
579
|
"color": "muted",
|
|
576
|
-
"
|
|
577
|
-
"
|
|
580
|
+
"variant": "body",
|
|
581
|
+
"content": "@entity.currentStepDescription"
|
|
578
582
|
}
|
|
579
583
|
],
|
|
580
584
|
"type": "stack",
|
|
581
|
-
"
|
|
582
|
-
"
|
|
585
|
+
"gap": "xs",
|
|
586
|
+
"direction": "vertical"
|
|
583
587
|
}
|
|
584
588
|
]
|
|
585
589
|
}
|
|
586
590
|
],
|
|
587
|
-
"
|
|
588
|
-
"gap": "md"
|
|
589
|
-
"type": "stack"
|
|
591
|
+
"type": "stack",
|
|
592
|
+
"gap": "md"
|
|
590
593
|
}
|
|
591
|
-
]
|
|
594
|
+
],
|
|
595
|
+
"type": "card"
|
|
592
596
|
},
|
|
593
597
|
{
|
|
594
598
|
"align": "center",
|
|
595
|
-
"gap": "sm",
|
|
596
|
-
"direction": "horizontal",
|
|
597
|
-
"type": "stack",
|
|
598
599
|
"children": [
|
|
599
600
|
{
|
|
601
|
+
"label": "Back",
|
|
602
|
+
"variant": "ghost",
|
|
600
603
|
"action": "BACK",
|
|
601
604
|
"icon": "chevron-left",
|
|
602
|
-
"disabled": "@entity.isFirstStep",
|
|
603
605
|
"type": "button",
|
|
604
|
-
"
|
|
605
|
-
"variant": "ghost"
|
|
606
|
+
"disabled": "@entity.isFirstStep"
|
|
606
607
|
},
|
|
607
608
|
{
|
|
609
|
+
"label": "Reject",
|
|
608
610
|
"type": "button",
|
|
609
|
-
"action": "REJECT",
|
|
610
611
|
"variant": "ghost",
|
|
611
|
-
"
|
|
612
|
-
"
|
|
612
|
+
"icon": "x",
|
|
613
|
+
"action": "REJECT"
|
|
613
614
|
},
|
|
614
615
|
{
|
|
615
|
-
"variant": "ghost",
|
|
616
|
-
"type": "button",
|
|
617
616
|
"label": "Escalate",
|
|
618
617
|
"action": "ESCALATE",
|
|
618
|
+
"variant": "ghost",
|
|
619
|
+
"type": "button",
|
|
619
620
|
"icon": "alert-triangle"
|
|
620
621
|
},
|
|
621
622
|
{
|
|
622
|
-
"type": "button",
|
|
623
|
-
"label": "@entity.primaryActionLabel",
|
|
624
|
-
"variant": "@entity.primaryActionVariant",
|
|
625
623
|
"action": "ADVANCE",
|
|
626
|
-
"
|
|
624
|
+
"label": "@entity.primaryActionLabel",
|
|
625
|
+
"type": "button",
|
|
626
|
+
"icon": "@entity.primaryActionIcon",
|
|
627
|
+
"variant": "primary"
|
|
627
628
|
}
|
|
628
|
-
]
|
|
629
|
+
],
|
|
630
|
+
"direction": "horizontal",
|
|
631
|
+
"gap": "sm",
|
|
632
|
+
"type": "stack"
|
|
629
633
|
}
|
|
630
634
|
]
|
|
631
635
|
}
|
|
@@ -646,8 +650,8 @@
|
|
|
646
650
|
"render-ui",
|
|
647
651
|
"main",
|
|
648
652
|
{
|
|
649
|
-
"message": "@entity.errorMessage",
|
|
650
653
|
"title": "Failed to load",
|
|
654
|
+
"message": "@entity.errorMessage",
|
|
651
655
|
"type": "error-state"
|
|
652
656
|
}
|
|
653
657
|
]
|
|
@@ -818,114 +822,114 @@
|
|
|
818
822
|
"render-ui",
|
|
819
823
|
"main",
|
|
820
824
|
{
|
|
821
|
-
"
|
|
822
|
-
"gap": "lg",
|
|
825
|
+
"direction": "vertical",
|
|
823
826
|
"children": [
|
|
824
827
|
{
|
|
825
828
|
"children": [
|
|
826
829
|
{
|
|
827
|
-
"
|
|
828
|
-
"
|
|
830
|
+
"type": "icon",
|
|
831
|
+
"name": "shield-check"
|
|
829
832
|
},
|
|
830
833
|
{
|
|
834
|
+
"type": "typography",
|
|
831
835
|
"content": "@config.title",
|
|
832
|
-
"variant": "h3"
|
|
833
|
-
"type": "typography"
|
|
836
|
+
"variant": "h3"
|
|
834
837
|
}
|
|
835
838
|
],
|
|
836
|
-
"
|
|
839
|
+
"direction": "horizontal",
|
|
837
840
|
"type": "stack",
|
|
838
|
-
"
|
|
839
|
-
"
|
|
841
|
+
"align": "center",
|
|
842
|
+
"gap": "sm"
|
|
840
843
|
},
|
|
841
844
|
{
|
|
842
|
-
"type": "wizard-progress",
|
|
843
845
|
"currentStep": "@entity.currentStepIndex",
|
|
844
|
-
"
|
|
845
|
-
"
|
|
846
|
+
"steps": "@entity.wizardSteps",
|
|
847
|
+
"type": "wizard-progress",
|
|
848
|
+
"allowNavigation": false
|
|
846
849
|
},
|
|
847
850
|
{
|
|
848
851
|
"children": [
|
|
849
852
|
{
|
|
853
|
+
"type": "stack",
|
|
854
|
+
"direction": "vertical",
|
|
855
|
+
"gap": "md",
|
|
850
856
|
"children": [
|
|
851
857
|
{
|
|
858
|
+
"align": "center",
|
|
859
|
+
"type": "stack",
|
|
852
860
|
"children": [
|
|
853
861
|
{
|
|
854
|
-
"type": "icon",
|
|
855
862
|
"name": "@entity.currentStepIcon",
|
|
863
|
+
"type": "icon",
|
|
856
864
|
"size": "lg"
|
|
857
865
|
},
|
|
858
866
|
{
|
|
867
|
+
"direction": "vertical",
|
|
868
|
+
"type": "stack",
|
|
859
869
|
"gap": "xs",
|
|
860
870
|
"children": [
|
|
861
871
|
{
|
|
862
|
-
"
|
|
872
|
+
"type": "typography",
|
|
863
873
|
"variant": "h2",
|
|
864
|
-
"
|
|
874
|
+
"content": "@entity.currentStepLabel"
|
|
865
875
|
},
|
|
866
876
|
{
|
|
867
|
-
"content": "@entity.currentStepDescription",
|
|
868
|
-
"variant": "body",
|
|
869
877
|
"color": "muted",
|
|
870
|
-
"type": "typography"
|
|
878
|
+
"type": "typography",
|
|
879
|
+
"content": "@entity.currentStepDescription",
|
|
880
|
+
"variant": "body"
|
|
871
881
|
}
|
|
872
|
-
]
|
|
873
|
-
"direction": "vertical",
|
|
874
|
-
"type": "stack"
|
|
882
|
+
]
|
|
875
883
|
}
|
|
876
884
|
],
|
|
877
885
|
"gap": "sm",
|
|
878
|
-
"
|
|
879
|
-
"direction": "horizontal",
|
|
880
|
-
"align": "center"
|
|
886
|
+
"direction": "horizontal"
|
|
881
887
|
}
|
|
882
|
-
]
|
|
883
|
-
"gap": "md",
|
|
884
|
-
"direction": "vertical",
|
|
885
|
-
"type": "stack"
|
|
888
|
+
]
|
|
886
889
|
}
|
|
887
890
|
],
|
|
888
891
|
"type": "card"
|
|
889
892
|
},
|
|
890
893
|
{
|
|
894
|
+
"direction": "horizontal",
|
|
891
895
|
"type": "stack",
|
|
896
|
+
"gap": "sm",
|
|
892
897
|
"align": "center",
|
|
893
898
|
"children": [
|
|
894
899
|
{
|
|
895
900
|
"label": "Back",
|
|
896
|
-
"icon": "chevron-left",
|
|
897
|
-
"disabled": "@entity.isFirstStep",
|
|
898
901
|
"variant": "ghost",
|
|
899
|
-
"
|
|
900
|
-
"
|
|
902
|
+
"action": "BACK",
|
|
903
|
+
"disabled": "@entity.isFirstStep",
|
|
904
|
+
"icon": "chevron-left",
|
|
905
|
+
"type": "button"
|
|
901
906
|
},
|
|
902
907
|
{
|
|
908
|
+
"label": "Reject",
|
|
903
909
|
"action": "REJECT",
|
|
904
|
-
"type": "button",
|
|
905
910
|
"icon": "x",
|
|
906
|
-
"
|
|
907
|
-
"
|
|
911
|
+
"variant": "ghost",
|
|
912
|
+
"type": "button"
|
|
908
913
|
},
|
|
909
914
|
{
|
|
910
|
-
"icon": "alert-triangle",
|
|
911
915
|
"variant": "ghost",
|
|
916
|
+
"icon": "alert-triangle",
|
|
912
917
|
"type": "button",
|
|
913
918
|
"label": "Escalate",
|
|
914
919
|
"action": "ESCALATE"
|
|
915
920
|
},
|
|
916
921
|
{
|
|
922
|
+
"icon": "@entity.primaryActionIcon",
|
|
923
|
+
"variant": "primary",
|
|
917
924
|
"type": "button",
|
|
918
|
-
"variant": "@entity.primaryActionVariant",
|
|
919
925
|
"label": "@entity.primaryActionLabel",
|
|
920
|
-
"icon": "@entity.primaryActionIcon",
|
|
921
926
|
"action": "ADVANCE"
|
|
922
927
|
}
|
|
923
|
-
]
|
|
924
|
-
"direction": "horizontal",
|
|
925
|
-
"gap": "sm"
|
|
928
|
+
]
|
|
926
929
|
}
|
|
927
930
|
],
|
|
928
|
-
"
|
|
931
|
+
"type": "stack",
|
|
932
|
+
"gap": "lg"
|
|
929
933
|
}
|
|
930
934
|
]
|
|
931
935
|
]
|
|
@@ -945,8 +949,6 @@
|
|
|
945
949
|
"render-ui",
|
|
946
950
|
"main",
|
|
947
951
|
{
|
|
948
|
-
"align": "center",
|
|
949
|
-
"direction": "vertical",
|
|
950
952
|
"children": [
|
|
951
953
|
{
|
|
952
954
|
"size": "lg",
|
|
@@ -954,34 +956,36 @@
|
|
|
954
956
|
"name": "check-circle"
|
|
955
957
|
},
|
|
956
958
|
{
|
|
957
|
-
"align": "center",
|
|
958
|
-
"variant": "h2",
|
|
959
959
|
"type": "typography",
|
|
960
|
-
"content": "Approved"
|
|
960
|
+
"content": "Approved",
|
|
961
|
+
"align": "center",
|
|
962
|
+
"variant": "h2"
|
|
961
963
|
},
|
|
962
964
|
{
|
|
965
|
+
"align": "center",
|
|
963
966
|
"type": "typography",
|
|
964
|
-
"variant": "body",
|
|
965
|
-
"color": "muted",
|
|
966
967
|
"content": "All review steps completed successfully.",
|
|
967
|
-
"
|
|
968
|
+
"color": "muted",
|
|
969
|
+
"variant": "body"
|
|
968
970
|
},
|
|
969
971
|
{
|
|
970
|
-
"type": "wizard-progress",
|
|
971
|
-
"allowNavigation": false,
|
|
972
972
|
"steps": "@entity.wizardSteps",
|
|
973
|
+
"allowNavigation": false,
|
|
974
|
+
"type": "wizard-progress",
|
|
973
975
|
"currentStep": "@entity.totalSteps"
|
|
974
976
|
},
|
|
975
977
|
{
|
|
978
|
+
"icon": "rotate-ccw",
|
|
976
979
|
"action": "RESTART",
|
|
977
980
|
"label": "Start a new review",
|
|
978
|
-
"
|
|
979
|
-
"variant": "secondary"
|
|
980
|
-
"type": "button"
|
|
981
|
+
"type": "button",
|
|
982
|
+
"variant": "secondary"
|
|
981
983
|
}
|
|
982
984
|
],
|
|
985
|
+
"type": "stack",
|
|
986
|
+
"direction": "vertical",
|
|
983
987
|
"gap": "lg",
|
|
984
|
-
"
|
|
988
|
+
"align": "center"
|
|
985
989
|
}
|
|
986
990
|
]
|
|
987
991
|
]
|
|
@@ -1121,14 +1125,9 @@
|
|
|
1121
1125
|
"render-ui",
|
|
1122
1126
|
"main",
|
|
1123
1127
|
{
|
|
1124
|
-
"type": "stack",
|
|
1125
|
-
"direction": "vertical",
|
|
1126
1128
|
"children": [
|
|
1127
1129
|
{
|
|
1128
|
-
"gap": "sm",
|
|
1129
|
-
"type": "stack",
|
|
1130
1130
|
"direction": "horizontal",
|
|
1131
|
-
"align": "center",
|
|
1132
1131
|
"children": [
|
|
1133
1132
|
{
|
|
1134
1133
|
"type": "icon",
|
|
@@ -1136,99 +1135,104 @@
|
|
|
1136
1135
|
},
|
|
1137
1136
|
{
|
|
1138
1137
|
"content": "@config.title",
|
|
1139
|
-
"
|
|
1140
|
-
"
|
|
1138
|
+
"variant": "h3",
|
|
1139
|
+
"type": "typography"
|
|
1141
1140
|
}
|
|
1142
|
-
]
|
|
1141
|
+
],
|
|
1142
|
+
"align": "center",
|
|
1143
|
+
"gap": "sm",
|
|
1144
|
+
"type": "stack"
|
|
1143
1145
|
},
|
|
1144
1146
|
{
|
|
1147
|
+
"type": "wizard-progress",
|
|
1145
1148
|
"steps": "@entity.wizardSteps",
|
|
1146
|
-
"currentStep": "@entity.currentStepIndex",
|
|
1147
1149
|
"allowNavigation": false,
|
|
1148
|
-
"
|
|
1150
|
+
"currentStep": "@entity.currentStepIndex"
|
|
1149
1151
|
},
|
|
1150
1152
|
{
|
|
1151
1153
|
"type": "card",
|
|
1152
1154
|
"children": [
|
|
1153
1155
|
{
|
|
1154
1156
|
"type": "stack",
|
|
1155
|
-
"
|
|
1157
|
+
"gap": "md",
|
|
1156
1158
|
"children": [
|
|
1157
1159
|
{
|
|
1158
1160
|
"type": "stack",
|
|
1161
|
+
"align": "center",
|
|
1159
1162
|
"children": [
|
|
1160
1163
|
{
|
|
1161
|
-
"type": "icon",
|
|
1162
1164
|
"name": "@entity.currentStepIcon",
|
|
1163
|
-
"size": "lg"
|
|
1165
|
+
"size": "lg",
|
|
1166
|
+
"type": "icon"
|
|
1164
1167
|
},
|
|
1165
1168
|
{
|
|
1166
|
-
"direction": "vertical",
|
|
1167
1169
|
"type": "stack",
|
|
1168
|
-
"gap": "xs",
|
|
1169
1170
|
"children": [
|
|
1170
1171
|
{
|
|
1171
|
-
"variant": "h2",
|
|
1172
1172
|
"type": "typography",
|
|
1173
|
-
"content": "@entity.currentStepLabel"
|
|
1173
|
+
"content": "@entity.currentStepLabel",
|
|
1174
|
+
"variant": "h2"
|
|
1174
1175
|
},
|
|
1175
1176
|
{
|
|
1177
|
+
"color": "muted",
|
|
1176
1178
|
"type": "typography",
|
|
1177
1179
|
"content": "@entity.currentStepDescription",
|
|
1178
|
-
"color": "muted",
|
|
1179
1180
|
"variant": "body"
|
|
1180
1181
|
}
|
|
1181
|
-
]
|
|
1182
|
+
],
|
|
1183
|
+
"direction": "vertical",
|
|
1184
|
+
"gap": "xs"
|
|
1182
1185
|
}
|
|
1183
1186
|
],
|
|
1184
|
-
"
|
|
1185
|
-
"direction": "horizontal"
|
|
1186
|
-
"gap": "sm"
|
|
1187
|
+
"gap": "sm",
|
|
1188
|
+
"direction": "horizontal"
|
|
1187
1189
|
}
|
|
1188
1190
|
],
|
|
1189
|
-
"
|
|
1191
|
+
"direction": "vertical"
|
|
1190
1192
|
}
|
|
1191
1193
|
]
|
|
1192
1194
|
},
|
|
1193
1195
|
{
|
|
1196
|
+
"direction": "horizontal",
|
|
1194
1197
|
"children": [
|
|
1195
1198
|
{
|
|
1196
|
-
"variant": "ghost",
|
|
1197
|
-
"label": "Back",
|
|
1198
1199
|
"type": "button",
|
|
1200
|
+
"label": "Back",
|
|
1201
|
+
"variant": "ghost",
|
|
1199
1202
|
"action": "BACK",
|
|
1200
1203
|
"icon": "chevron-left",
|
|
1201
1204
|
"disabled": "@entity.isFirstStep"
|
|
1202
1205
|
},
|
|
1203
1206
|
{
|
|
1207
|
+
"label": "Reject",
|
|
1208
|
+
"variant": "ghost",
|
|
1204
1209
|
"action": "REJECT",
|
|
1205
|
-
"icon": "x",
|
|
1206
1210
|
"type": "button",
|
|
1207
|
-
"
|
|
1208
|
-
"variant": "ghost"
|
|
1211
|
+
"icon": "x"
|
|
1209
1212
|
},
|
|
1210
1213
|
{
|
|
1211
|
-
"
|
|
1212
|
-
"icon": "alert-triangle",
|
|
1214
|
+
"variant": "ghost",
|
|
1213
1215
|
"type": "button",
|
|
1214
1216
|
"label": "Escalate",
|
|
1215
|
-
"
|
|
1217
|
+
"action": "ESCALATE",
|
|
1218
|
+
"icon": "alert-triangle"
|
|
1216
1219
|
},
|
|
1217
1220
|
{
|
|
1218
|
-
"
|
|
1219
|
-
"label": "@entity.primaryActionLabel",
|
|
1220
|
-
"variant": "@entity.primaryActionVariant",
|
|
1221
|
+
"variant": "primary",
|
|
1221
1222
|
"action": "ADVANCE",
|
|
1222
|
-
"
|
|
1223
|
+
"label": "@entity.primaryActionLabel",
|
|
1224
|
+
"icon": "@entity.primaryActionIcon",
|
|
1225
|
+
"type": "button"
|
|
1223
1226
|
}
|
|
1224
1227
|
],
|
|
1225
|
-
"gap": "sm",
|
|
1226
|
-
"type": "stack",
|
|
1227
1228
|
"align": "center",
|
|
1228
|
-
"
|
|
1229
|
+
"type": "stack",
|
|
1230
|
+
"gap": "sm"
|
|
1229
1231
|
}
|
|
1230
1232
|
],
|
|
1231
|
-
"gap": "lg"
|
|
1233
|
+
"gap": "lg",
|
|
1234
|
+
"type": "stack",
|
|
1235
|
+
"direction": "vertical"
|
|
1232
1236
|
}
|
|
1233
1237
|
]
|
|
1234
1238
|
]
|
|
@@ -1252,53 +1256,53 @@
|
|
|
1252
1256
|
"render-ui",
|
|
1253
1257
|
"main",
|
|
1254
1258
|
{
|
|
1255
|
-
"
|
|
1259
|
+
"gap": "lg",
|
|
1256
1260
|
"direction": "vertical",
|
|
1261
|
+
"type": "stack",
|
|
1257
1262
|
"align": "center",
|
|
1258
1263
|
"children": [
|
|
1259
1264
|
{
|
|
1260
|
-
"
|
|
1265
|
+
"size": "lg",
|
|
1261
1266
|
"type": "icon",
|
|
1262
|
-
"
|
|
1267
|
+
"name": "x-circle"
|
|
1263
1268
|
},
|
|
1264
1269
|
{
|
|
1265
|
-
"
|
|
1270
|
+
"align": "center",
|
|
1266
1271
|
"content": "Rejected",
|
|
1267
1272
|
"type": "typography",
|
|
1268
|
-
"
|
|
1273
|
+
"variant": "h2"
|
|
1269
1274
|
},
|
|
1270
1275
|
{
|
|
1271
1276
|
"type": "card",
|
|
1272
1277
|
"children": [
|
|
1273
1278
|
{
|
|
1274
|
-
"
|
|
1279
|
+
"type": "stack",
|
|
1275
1280
|
"children": [
|
|
1276
1281
|
{
|
|
1277
|
-
"type": "typography",
|
|
1278
1282
|
"variant": "caption",
|
|
1279
|
-
"
|
|
1280
|
-
"
|
|
1283
|
+
"color": "muted",
|
|
1284
|
+
"type": "typography",
|
|
1285
|
+
"content": "Reason"
|
|
1281
1286
|
},
|
|
1282
1287
|
{
|
|
1288
|
+
"variant": "body",
|
|
1283
1289
|
"type": "typography",
|
|
1284
|
-
"content": "@entity.rejectionReason"
|
|
1285
|
-
"variant": "body"
|
|
1290
|
+
"content": "@entity.rejectionReason"
|
|
1286
1291
|
}
|
|
1287
1292
|
],
|
|
1288
|
-
"
|
|
1289
|
-
"
|
|
1293
|
+
"direction": "vertical",
|
|
1294
|
+
"gap": "sm"
|
|
1290
1295
|
}
|
|
1291
1296
|
]
|
|
1292
1297
|
},
|
|
1293
1298
|
{
|
|
1294
|
-
"variant": "secondary",
|
|
1295
1299
|
"icon": "rotate-ccw",
|
|
1296
|
-
"type": "button",
|
|
1297
1300
|
"label": "Start a new review",
|
|
1301
|
+
"variant": "secondary",
|
|
1302
|
+
"type": "button",
|
|
1298
1303
|
"action": "RESTART"
|
|
1299
1304
|
}
|
|
1300
|
-
]
|
|
1301
|
-
"gap": "lg"
|
|
1305
|
+
]
|
|
1302
1306
|
}
|
|
1303
1307
|
]
|
|
1304
1308
|
]
|
|
@@ -1318,36 +1322,36 @@
|
|
|
1318
1322
|
"main",
|
|
1319
1323
|
{
|
|
1320
1324
|
"gap": "lg",
|
|
1321
|
-
"
|
|
1325
|
+
"type": "stack",
|
|
1322
1326
|
"align": "center",
|
|
1323
1327
|
"children": [
|
|
1324
1328
|
{
|
|
1329
|
+
"type": "icon",
|
|
1325
1330
|
"size": "lg",
|
|
1326
|
-
"name": "alert-triangle"
|
|
1327
|
-
"type": "icon"
|
|
1331
|
+
"name": "alert-triangle"
|
|
1328
1332
|
},
|
|
1329
1333
|
{
|
|
1334
|
+
"content": "Escalated",
|
|
1330
1335
|
"variant": "h2",
|
|
1331
1336
|
"align": "center",
|
|
1332
|
-
"type": "typography"
|
|
1333
|
-
"content": "Escalated"
|
|
1337
|
+
"type": "typography"
|
|
1334
1338
|
},
|
|
1335
1339
|
{
|
|
1336
|
-
"variant": "body",
|
|
1337
|
-
"content": "This item has been escalated for further review.",
|
|
1338
1340
|
"type": "typography",
|
|
1339
1341
|
"color": "muted",
|
|
1340
|
-
"align": "center"
|
|
1342
|
+
"align": "center",
|
|
1343
|
+
"variant": "body",
|
|
1344
|
+
"content": "This item has been escalated for further review."
|
|
1341
1345
|
},
|
|
1342
1346
|
{
|
|
1347
|
+
"label": "Start a new review",
|
|
1343
1348
|
"action": "RESTART",
|
|
1344
|
-
"type": "button",
|
|
1345
1349
|
"icon": "rotate-ccw",
|
|
1346
1350
|
"variant": "secondary",
|
|
1347
|
-
"
|
|
1351
|
+
"type": "button"
|
|
1348
1352
|
}
|
|
1349
1353
|
],
|
|
1350
|
-
"
|
|
1354
|
+
"direction": "vertical"
|
|
1351
1355
|
}
|
|
1352
1356
|
]
|
|
1353
1357
|
]
|
|
@@ -1381,8 +1385,8 @@
|
|
|
1381
1385
|
"render-ui",
|
|
1382
1386
|
"main",
|
|
1383
1387
|
{
|
|
1384
|
-
"
|
|
1385
|
-
"
|
|
1388
|
+
"title": "Restarting…",
|
|
1389
|
+
"type": "loading-state"
|
|
1386
1390
|
}
|
|
1387
1391
|
]
|
|
1388
1392
|
]
|
|
@@ -1421,8 +1425,8 @@
|
|
|
1421
1425
|
"render-ui",
|
|
1422
1426
|
"main",
|
|
1423
1427
|
{
|
|
1424
|
-
"
|
|
1425
|
-
"
|
|
1428
|
+
"type": "loading-state",
|
|
1429
|
+
"title": "Restarting…"
|
|
1426
1430
|
}
|
|
1427
1431
|
]
|
|
1428
1432
|
]
|
|
@@ -1471,8 +1475,8 @@
|
|
|
1471
1475
|
"render-ui",
|
|
1472
1476
|
"main",
|
|
1473
1477
|
{
|
|
1474
|
-
"
|
|
1475
|
-
"
|
|
1478
|
+
"type": "loading-state",
|
|
1479
|
+
"title": "Retrying…"
|
|
1476
1480
|
}
|
|
1477
1481
|
]
|
|
1478
1482
|
]
|
|
@@ -1480,32 +1484,32 @@
|
|
|
1480
1484
|
]
|
|
1481
1485
|
},
|
|
1482
1486
|
"config": {
|
|
1483
|
-
"title": {
|
|
1484
|
-
"type": "string",
|
|
1485
|
-
"default": "Review"
|
|
1486
|
-
},
|
|
1487
1487
|
"steps": {
|
|
1488
1488
|
"type": "[object]",
|
|
1489
1489
|
"default": [
|
|
1490
1490
|
{
|
|
1491
1491
|
"label": "Manager Review",
|
|
1492
|
-
"icon": "user",
|
|
1493
1492
|
"key": "manager",
|
|
1494
|
-
"description": "Initial review by direct manager"
|
|
1493
|
+
"description": "Initial review by direct manager",
|
|
1494
|
+
"icon": "user"
|
|
1495
1495
|
},
|
|
1496
1496
|
{
|
|
1497
|
-
"icon": "users",
|
|
1498
|
-
"label": "Director Approval",
|
|
1499
1497
|
"key": "director",
|
|
1500
|
-
"description": "Department director sign-off"
|
|
1498
|
+
"description": "Department director sign-off",
|
|
1499
|
+
"label": "Director Approval",
|
|
1500
|
+
"icon": "users"
|
|
1501
1501
|
},
|
|
1502
1502
|
{
|
|
1503
1503
|
"icon": "shield",
|
|
1504
|
+
"description": "Final executive approval",
|
|
1504
1505
|
"key": "executive",
|
|
1505
|
-
"label": "Executive Sign-off"
|
|
1506
|
-
"description": "Final executive approval"
|
|
1506
|
+
"label": "Executive Sign-off"
|
|
1507
1507
|
}
|
|
1508
1508
|
]
|
|
1509
|
+
},
|
|
1510
|
+
"title": {
|
|
1511
|
+
"type": "string",
|
|
1512
|
+
"default": "Review"
|
|
1509
1513
|
}
|
|
1510
1514
|
},
|
|
1511
1515
|
"scope": "instance"
|