@byu-oit/vue-decision-processing-components 8.24.0 → 8.25.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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [8.25.0](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.24.0...v8.25.0) (2022-01-31)
6
+
7
+
8
+ ### Features
9
+
10
+ * component for application history in the new app service(s) ([deebecb](https://github.com/byu-oit/vue-decision-processing-components/commit/deebecb8dd64f67388cb5fe5712bfddad7ca4b83))
11
+
5
12
  ## [8.24.0](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.23.5...v8.24.0) (2022-01-14)
6
13
 
7
14
 
@@ -0,0 +1,50 @@
1
+ <!--
2
+ Copyright 2022 Brigham Young University
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ -->
16
+ <template>
17
+ <table class="table table-sm table-borderless">
18
+ <thead>
19
+ <tr>
20
+ <th>Admit Period</th>
21
+ <th>Applicant Type</th>
22
+ <th>Status</th>
23
+ <th>Decision</th>
24
+ <th>Date</th>
25
+ </tr>
26
+ </thead>
27
+ <tbody>
28
+ <tr v-for="row of newAppHistory.applicationList" :key="row.appId">
29
+ <td>{{row.admitPeriod | yearTermLongFormat}}</td>
30
+ <td>{{row.applicantType}}</td>
31
+ <td>{{row.status}}</td>
32
+ <td>{{row.decision}}</td>
33
+ <td>{{row.decisionDateTime | dateFormat}}</td>
34
+ </tr>
35
+ </tbody>
36
+ </table>
37
+ </template>
38
+ <script>
39
+ import { mapState } from 'vuex'
40
+ import { dateFormat, yearTermLongFormat } from './dateTimeFormat'
41
+
42
+ export default {
43
+ name: 'DetailsDecisionHistory',
44
+ filters: { dateFormat, yearTermLongFormat },
45
+ computed: {
46
+ ...mapState(['newAppHistory'])
47
+ }
48
+ }
49
+
50
+ </script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byu-oit/vue-decision-processing-components",
3
- "version": "8.24.0",
3
+ "version": "8.25.0",
4
4
  "description": "Vue components shared between decision processing systems for the CES schools.",
5
5
  "dependencies": {
6
6
  "@fortawesome/fontawesome-free": "^5.15.4",