@eeplatform/nuxt-layer-common 1.7.42 → 1.7.44
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 +12 -0
- package/components/EnrollmentPreview.vue +8 -22
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @eeplatform/nuxt-layer-common
|
|
2
2
|
|
|
3
|
+
## 1.7.44
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6063f41: Fix enrollment form - display other info regardless if returning learner
|
|
8
|
+
|
|
9
|
+
## 1.7.43
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 7980023: Fix enrollment form
|
|
14
|
+
|
|
3
15
|
## 1.7.42
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -99,11 +99,7 @@
|
|
|
99
99
|
</v-col>
|
|
100
100
|
|
|
101
101
|
<!-- Learner Information -->
|
|
102
|
-
<v-col
|
|
103
|
-
cols="12"
|
|
104
|
-
class="mb-6"
|
|
105
|
-
v-if="!localProps.application.returningLearner"
|
|
106
|
-
>
|
|
102
|
+
<v-col cols="12" class="mb-6">
|
|
107
103
|
<v-card variant="outlined" border="thin" class="pa-4">
|
|
108
104
|
<v-card-title class="text-h6 font-weight-bold pa-0 mb-3">
|
|
109
105
|
Learner Information
|
|
@@ -198,11 +194,7 @@
|
|
|
198
194
|
</v-col>
|
|
199
195
|
|
|
200
196
|
<!-- Current Address -->
|
|
201
|
-
<v-col
|
|
202
|
-
cols="12"
|
|
203
|
-
class="mb-6"
|
|
204
|
-
v-if="!localProps.application.returningLearner"
|
|
205
|
-
>
|
|
197
|
+
<v-col cols="12" class="mb-6">
|
|
206
198
|
<v-card variant="outlined" border="thin" class="pa-4">
|
|
207
199
|
<v-card-title class="text-h6 font-weight-bold pa-0 mb-3">
|
|
208
200
|
Current Address
|
|
@@ -252,11 +244,7 @@
|
|
|
252
244
|
</v-col>
|
|
253
245
|
|
|
254
246
|
<!-- Permanent Address -->
|
|
255
|
-
<v-col
|
|
256
|
-
cols="12"
|
|
257
|
-
class="mb-6"
|
|
258
|
-
v-if="!localProps.application.returningLearner"
|
|
259
|
-
>
|
|
247
|
+
<v-col cols="12" class="mb-6">
|
|
260
248
|
<v-card variant="outlined" border="thin" class="pa-4">
|
|
261
249
|
<v-card-title class="text-h6 font-weight-bold pa-0 mb-3">
|
|
262
250
|
Permanent Address
|
|
@@ -313,11 +301,7 @@
|
|
|
313
301
|
</v-col>
|
|
314
302
|
|
|
315
303
|
<!-- Parent/Guardian Information -->
|
|
316
|
-
<v-col
|
|
317
|
-
cols="12"
|
|
318
|
-
class="mb-6"
|
|
319
|
-
v-if="!localProps.application.returningLearner"
|
|
320
|
-
>
|
|
304
|
+
<v-col cols="12" class="mb-6">
|
|
321
305
|
<v-card variant="outlined" border="thin" class="pa-4">
|
|
322
306
|
<v-card-title class="text-h6 font-weight-bold pa-0 mb-3">
|
|
323
307
|
Parent/Guardian Information
|
|
@@ -455,7 +439,7 @@
|
|
|
455
439
|
Returning Learner Information
|
|
456
440
|
</v-card-title>
|
|
457
441
|
<v-row no-gutters>
|
|
458
|
-
<v-col cols="
|
|
442
|
+
<v-col cols="12" class="mb-2">
|
|
459
443
|
<strong>Last Grade Level Completed:</strong>
|
|
460
444
|
{{
|
|
461
445
|
formatGradeLevel(
|
|
@@ -464,13 +448,15 @@
|
|
|
464
448
|
) ?? "N/A"
|
|
465
449
|
}}
|
|
466
450
|
</v-col>
|
|
467
|
-
|
|
451
|
+
|
|
452
|
+
<v-col cols="12" class="mb-2">
|
|
468
453
|
<strong>Last School Year Completed:</strong>
|
|
469
454
|
{{
|
|
470
455
|
localProps.application.returningLearnerInfo
|
|
471
456
|
?.lastSchoolYearCompleted ?? "N/A"
|
|
472
457
|
}}
|
|
473
458
|
</v-col>
|
|
459
|
+
|
|
474
460
|
<v-col cols="12">
|
|
475
461
|
<strong>Last School Attended:</strong>
|
|
476
462
|
{{
|