@eeplatform/nuxt-layer-common 1.7.36 → 1.7.37
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/CHANGELOG.md +6 -0
- package/components/EnrollmentPreview.vue +38 -36
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -557,42 +557,44 @@
|
|
|
557
557
|
</v-btn>
|
|
558
558
|
</v-col>
|
|
559
559
|
|
|
560
|
-
<
|
|
561
|
-
v-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
<
|
|
567
|
-
<
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
<v-list
|
|
583
|
-
<v-list-item
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
<v-list-item
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
560
|
+
<slot name="action">
|
|
561
|
+
<v-col
|
|
562
|
+
v-if="localProps.application?.status === 'pending'"
|
|
563
|
+
cols="6"
|
|
564
|
+
class="pa-0"
|
|
565
|
+
>
|
|
566
|
+
<v-menu>
|
|
567
|
+
<template #activator="{ props }">
|
|
568
|
+
<v-btn
|
|
569
|
+
block
|
|
570
|
+
variant="flat"
|
|
571
|
+
color="black"
|
|
572
|
+
class="text-none"
|
|
573
|
+
size="large"
|
|
574
|
+
height="48"
|
|
575
|
+
v-bind="props"
|
|
576
|
+
tile
|
|
577
|
+
>
|
|
578
|
+
More actions
|
|
579
|
+
</v-btn>
|
|
580
|
+
</template>
|
|
581
|
+
|
|
582
|
+
<v-list class="pa-0">
|
|
583
|
+
<v-list-item @click="emits('accept')">
|
|
584
|
+
<v-list-item-title class="text-subtitle-1 font-weight-medium">
|
|
585
|
+
Accept Application
|
|
586
|
+
</v-list-item-title>
|
|
587
|
+
</v-list-item>
|
|
588
|
+
|
|
589
|
+
<v-list-item @click="emits('reject')" class="text-red">
|
|
590
|
+
<v-list-item-title class="text-subtitle-1 font-weight-medium">
|
|
591
|
+
Reject Application
|
|
592
|
+
</v-list-item-title>
|
|
593
|
+
</v-list-item>
|
|
594
|
+
</v-list>
|
|
595
|
+
</v-menu>
|
|
596
|
+
</v-col>
|
|
597
|
+
</slot>
|
|
596
598
|
</v-row>
|
|
597
599
|
</v-toolbar>
|
|
598
600
|
</v-card>
|