@byu-oit/vue-decision-processing-components 8.34.1 → 8.35.7

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,11 @@
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
+
6
+ ### [8.35.7](https://github.com/byu-oit/vue-decision-processing-components/compare/v.8.35.7...v8.35.6) (2023-12-13)
7
+
8
+
9
+
5
10
  ### [8.34.1](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.34.0...v8.34.1) (2023-08-03)
6
11
 
7
12
 
@@ -0,0 +1,100 @@
1
+ <template>
2
+ <modal
3
+ name="show-applicant-ids-modal"
4
+ height="auto"
5
+ scrollable
6
+ draggable
7
+ >
8
+ <div class="bg-light p-1 text-uppercase">Applicant Id's</div>
9
+ <div>
10
+ <table class="table table-bordered">
11
+ <thead>
12
+ <tr>
13
+ <th>ID</th>
14
+ <th>Value</th>
15
+ </tr>
16
+ </thead>
17
+ <tbody>
18
+ <tr>
19
+ <th>Application Id</th>
20
+ <td>{{ applicationId }}</td>
21
+ </tr>
22
+ <tr>
23
+ <th>Net Id</th>
24
+ <td>{{ netId }}</td>
25
+ </tr>
26
+ <tr>
27
+ <th>Byu Id</th>
28
+ <td>{{ applicantId }}</td>
29
+ </tr>
30
+ <tr>
31
+ <th>Person Id</th>
32
+ <td>{{ personId }}</td>
33
+ </tr>
34
+ <tr>
35
+ <th>Central Processing Id</th>
36
+ <td>{{ cpId }}</td>
37
+ </tr>
38
+ <tr>
39
+ <th>Rsvp Id</th>
40
+ <td>{{ rsvpId }}</td>
41
+ </tr>
42
+ <tr>
43
+ <th>Ces Id</th>
44
+ <td>{{ cesId }}</td>
45
+ </tr>
46
+ <tr>
47
+ <th>Pathway Id</th>
48
+ <td>{{ pathId }}</td>
49
+ </tr>
50
+ <tr>
51
+ <th>Church Account Id</th>
52
+ <td>{{ churchAccountId }}</td>
53
+ </tr>
54
+ <tr>
55
+ <th>Church Account Username</th>
56
+ <td>{{ churchUserName }}</td>
57
+ </tr>
58
+ </tbody>
59
+ </table>
60
+ </div>
61
+ <span class="modal-footer">
62
+ <button @click="close" type="button" class="btn btn-sm btn-outline-danger">Close</button>
63
+ </span>
64
+ </modal>
65
+ </template>
66
+ <script>
67
+ import { mapState } from 'vuex'
68
+
69
+ export default {
70
+ name: 'ShowApplicantIds',
71
+ computed:{
72
+ ...mapState({
73
+ netId: state => state.application.netId,
74
+ applicantId: state => state.application.applicantId,
75
+ personId: state => state.application.personId,
76
+ cpId: state => state.newApp.cpId,
77
+ rsvpId: state => state.newApp.rsvpId,
78
+ cesId: state => state.newApp.cesId,
79
+ applicationId: state => state.newApp.appId,
80
+ pathId: state => state.newApp.pathId,
81
+ churchAccountId: state => state.newApp.churchAccountId,
82
+ churchUserName: state => state.newApp.churchUserName,
83
+ })
84
+ },
85
+ methods: {
86
+ close () {
87
+ this.$modal.hide('show-applicant-ids-modal')
88
+ },
89
+ }
90
+ }
91
+ </script>
92
+ <style scoped>
93
+ .applicant {
94
+ display: grid;
95
+ grid-template-columns: auto 1fr;
96
+ grid-template-rows: 1fr 1fr;
97
+ grid-column-gap: 0.5rem;
98
+ }
99
+
100
+ </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byu-oit/vue-decision-processing-components",
3
- "version": "8.34.1",
3
+ "version": "8.35.7",
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",