diff --git a/client/src/components/dashboard/AssignmentProgressSummaryBox.vue b/client/src/components/dashboard/AssignmentProgressSummaryBox.vue new file mode 100644 index 00000000..b76e0b8b --- /dev/null +++ b/client/src/components/dashboard/AssignmentProgressSummaryBox.vue @@ -0,0 +1,48 @@ + + + diff --git a/client/src/components/dashboard/AssignmentSummaryBox.vue b/client/src/components/dashboard/AssignmentSummaryBox.vue new file mode 100644 index 00000000..4d9754e2 --- /dev/null +++ b/client/src/components/dashboard/AssignmentSummaryBox.vue @@ -0,0 +1,54 @@ + + + diff --git a/client/src/components/dashboard/AttendanceSummaryBox.vue b/client/src/components/dashboard/AttendanceSummaryBox.vue new file mode 100644 index 00000000..ffd86316 --- /dev/null +++ b/client/src/components/dashboard/AttendanceSummaryBox.vue @@ -0,0 +1,51 @@ + + + diff --git a/client/src/components/dashboard/BaseBox.vue b/client/src/components/dashboard/BaseBox.vue new file mode 100644 index 00000000..e8c3aec3 --- /dev/null +++ b/client/src/components/dashboard/BaseBox.vue @@ -0,0 +1,22 @@ + + + + + diff --git a/client/src/components/dashboard/CompetenceSummaryBox.vue b/client/src/components/dashboard/CompetenceSummaryBox.vue new file mode 100644 index 00000000..6c2a7cca --- /dev/null +++ b/client/src/components/dashboard/CompetenceSummaryBox.vue @@ -0,0 +1,43 @@ + + + diff --git a/client/src/components/dashboard/CourseDetailDates.vue b/client/src/components/dashboard/CourseDetailDates.vue new file mode 100644 index 00000000..a06621dd --- /dev/null +++ b/client/src/components/dashboard/CourseDetailDates.vue @@ -0,0 +1,41 @@ + + + diff --git a/client/src/components/dashboard/CourseStatistics.vue b/client/src/components/dashboard/CourseStatistics.vue new file mode 100644 index 00000000..c4942c93 --- /dev/null +++ b/client/src/components/dashboard/CourseStatistics.vue @@ -0,0 +1,34 @@ + + + + + diff --git a/client/src/components/dashboard/FeedbackSummaryBox.vue b/client/src/components/dashboard/FeedbackSummaryBox.vue new file mode 100644 index 00000000..0c80d5cf --- /dev/null +++ b/client/src/components/dashboard/FeedbackSummaryBox.vue @@ -0,0 +1,57 @@ + + + diff --git a/client/src/components/dashboard/SimpleDates.vue b/client/src/components/dashboard/SimpleDates.vue new file mode 100644 index 00000000..09f1bd9a --- /dev/null +++ b/client/src/components/dashboard/SimpleDates.vue @@ -0,0 +1,19 @@ + + + diff --git a/client/src/components/dashboard/StatisticFilterList.vue b/client/src/components/dashboard/StatisticFilterList.vue new file mode 100644 index 00000000..7ec9b451 --- /dev/null +++ b/client/src/components/dashboard/StatisticFilterList.vue @@ -0,0 +1,104 @@ + + + diff --git a/client/src/components/learningPath/LearningPathDiagram.vue b/client/src/components/learningPath/LearningPathDiagram.vue index b939cab2..6fe0235d 100644 --- a/client/src/components/learningPath/LearningPathDiagram.vue +++ b/client/src/components/learningPath/LearningPathDiagram.vue @@ -36,23 +36,16 @@ const circles = computed(() => { }); const wrapperClasses = computed(() => { - let classes = "flex my-5"; + let classes = "flex"; if (props.diagramType === "horizontal") { - classes += " flex-row h-8"; + classes += " flex-row h-8 space-x-2"; } else if (props.diagramType === "horizontalSmall") { - classes += " flex-row h-5"; + classes += " flex-row h-5 space-x-1"; } else if (props.diagramType === "singleSmall") { classes += " h-8"; } return classes; }); - -const circleClasses = computed(() => { - if (props.diagramType === "horizontal" || props.diagramType === "horizontalSmall") { - return "pl-1"; - } - return ""; -});