@byu-oit/vue-decision-processing-components 8.23.2 → 8.24.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.
@@ -61,7 +61,7 @@ export default {
61
61
  accept: 'application/json',
62
62
  'content-type': 'application/json'
63
63
  }
64
- const url = `https://common-res-admit-period-cdn.ces-sim-prod.byu.edu/${this.school}-admit-periods.json`
64
+ const url = `https://admit-period-vocab-cdn.ces-admissionssupport-prd.amazon.byu.edu/${this.school}-admit-periods.json`
65
65
  const options = { headers, url }
66
66
  const r = await window.byu.auth.request(options)
67
67
  const { status, body } = r
package/CHANGELOG.md CHANGED
@@ -2,6 +2,22 @@
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.24.0](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.23.5...v8.24.0) (2022-01-14)
6
+
7
+
8
+ ### Features
9
+
10
+ * add whatsapp to dp for all schools ([b1362ff](https://github.com/byu-oit/vue-decision-processing-components/commit/b1362ffc9d3d662635b3a3db911bf196442308cb))
11
+
12
+ ### [8.23.5](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.23.4...v8.23.5) (2021-10-08)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * make scores sticky ([506ff35](https://github.com/byu-oit/vue-decision-processing-components/commit/506ff3500bdbcb2adee3f351218685b988ba1a71))
18
+
19
+ ### [8.23.3](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.23.2...v8.23.3) (2021-09-13)
20
+
5
21
  ### [8.23.2](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.23.1...v8.23.2) (2021-07-22)
6
22
 
7
23
 
@@ -24,6 +24,10 @@
24
24
  <strong>e:</strong> <a v-if="application.emailAddress" :href="`mailto:${application.emailAddress}`">{{application.emailAddress}}</a>
25
25
  <br>
26
26
  <strong>p:</strong> {{application.phoneNumber}}
27
+ <template v-if="application.whatsappNumber">
28
+ <br>
29
+ <strong>WhatsApp:</strong> {{application.whatsappNumber}}
30
+ </template>
27
31
  </span>
28
32
  </div>
29
33
  </template>
@@ -28,7 +28,9 @@
28
28
  <div class="score-section">
29
29
  <div class="header bg-light">Score</div>
30
30
  <div class="score-container">
31
- <slot name="score"></slot>
31
+ <div class="sticky-score">
32
+ <slot name="score"></slot>
33
+ </div>
32
34
  </div>
33
35
  </div>
34
36
  </div>
@@ -76,7 +78,6 @@
76
78
  margin-bottom: 1rem;
77
79
  border-width: medium;
78
80
  border-style: solid;
79
- overflow: auto;
80
81
  }
81
82
  .main-section {
82
83
  display: grid;
@@ -119,5 +120,9 @@
119
120
  grid-area: score;
120
121
  padding: 0.7rem;
121
122
  }
123
+ .sticky-score {
124
+ position: sticky;
125
+ top: 9rem;
126
+ }
122
127
 
123
128
  </style>
@@ -50,9 +50,9 @@ export default {
50
50
  type: Array,
51
51
  default() {
52
52
  return [
53
- '20215',
54
53
  '20221',
55
- '20223'
54
+ '20223',
55
+ '20225',
56
56
  ]
57
57
  }
58
58
  }
package/package.json CHANGED
@@ -1,22 +1,22 @@
1
1
  {
2
2
  "name": "@byu-oit/vue-decision-processing-components",
3
- "version": "8.23.2",
3
+ "version": "8.24.0",
4
4
  "description": "Vue components shared between decision processing systems for the CES schools.",
5
5
  "dependencies": {
6
- "@fortawesome/fontawesome-free": "^5.15.1",
7
- "@fortawesome/fontawesome-svg-core": "^1.2.32",
8
- "@fortawesome/free-regular-svg-icons": "^5.15.1",
9
- "@fortawesome/free-solid-svg-icons": "^5.15.1",
10
- "@fortawesome/vue-fontawesome": "^2.0.2",
6
+ "@fortawesome/fontawesome-free": "^5.15.4",
7
+ "@fortawesome/fontawesome-svg-core": "^1.2.36",
8
+ "@fortawesome/free-regular-svg-icons": "^5.15.4",
9
+ "@fortawesome/free-solid-svg-icons": "^5.15.4",
10
+ "@fortawesome/vue-fontawesome": "^2.0.6",
11
11
  "csv-string": "^4.0.1",
12
12
  "is-iso-date": "0.0.1",
13
13
  "lodash.get": "^4.4.2",
14
14
  "lodash.range": "^3.2.0",
15
15
  "s-age": "^1.1.2",
16
- "vue2-datepicker": "^3.8.2"
16
+ "vue2-datepicker": "^3.10.4"
17
17
  },
18
18
  "devDependencies": {
19
- "standard-version": "^9.1.0"
19
+ "standard-version": "^9.3.2"
20
20
  },
21
21
  "scripts": {},
22
22
  "repository": {
@@ -26,6 +26,7 @@ export const state = {
26
26
  netId: '',
27
27
  personId: '',
28
28
  phoneNumber: '',
29
+ whatsappNumber: '',
29
30
  preferredName: '',
30
31
  previousName: '',
31
32
  schoolPreferenceOrder: [],
@@ -62,6 +63,7 @@ export const mutations = {
62
63
  state.netId = application.netId
63
64
  state.personId = application.personId
64
65
  state.phoneNumber = application.phoneNumber
66
+ state.whatsappNumber = application.whatsappNumber
65
67
  state.preferredName = application.preferredName
66
68
  state.previousName = application.previousName
67
69
  state.schoolPreferenceOrder = application.schoolPreferenceOrder
@@ -82,6 +84,7 @@ export const mutations = {
82
84
  state.netId = ''
83
85
  state.personId = ''
84
86
  state.phoneNumber = ''
87
+ state.whatsappNumber = ''
85
88
  state.preferredName = ''
86
89
  state.previousName = ''
87
90
  state.schoolPreferenceOrder = []