@byu-oit/vue-decision-processing-components 8.35.14 → 8.36.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/DetailsCesHold.vue +2 -2
- package/README.md +22 -0
- package/package.json +1 -1
package/DetailsCesHold.vue
CHANGED
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
...mapState({
|
|
65
65
|
env: 'environment',
|
|
66
66
|
applicantId: state => state.application.applicantId,
|
|
67
|
-
applicantFirstName: state => state.application.preferredFirstName,
|
|
68
|
-
applicantSurname: state => state.application.surname,
|
|
67
|
+
applicantFirstName: state => state.application.basic.preferredFirstName,
|
|
68
|
+
applicantSurname: state => state.application.basic.surname,
|
|
69
69
|
applicantDob: state => state.application.personalRecords.dateOfBirth
|
|
70
70
|
}),
|
|
71
71
|
spinner () { return faSpinner },
|
package/README.md
CHANGED
|
@@ -1,2 +1,24 @@
|
|
|
1
1
|
# vue-decision-processing-components
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
2
4
|
Vue.js components to be shared between the decision processing applications for the various CES Schools.
|
|
5
|
+
|
|
6
|
+
## How to Use This
|
|
7
|
+
|
|
8
|
+
- All Decision Processing Clients use various components from this npm package.
|
|
9
|
+
|
|
10
|
+
## How to Build Locally
|
|
11
|
+
|
|
12
|
+
- Currently no way to run/build locally
|
|
13
|
+
- installation: npm install @byu-oit/vue-decision-processing-components
|
|
14
|
+
|
|
15
|
+
## How to Publish
|
|
16
|
+
- Bump version number in [package.json](./package.json#L3) using the following command in bash
|
|
17
|
+
- `npm version [patch|minor|major]`
|
|
18
|
+
- then change the commit message to follow the conventional commit message standard `git commit --amend` to something like `chore: bump version x.y.z`
|
|
19
|
+
This automatically creates a git tag if you run `git push --follow-tags` (which labels commits with the exact version that was published to npm).
|
|
20
|
+
- PR to main
|
|
21
|
+
- GHA publishes to npm
|
|
22
|
+
|
|
23
|
+
## How to Test
|
|
24
|
+
- vue-decision-processing-components can be tested by making changes to node modules in any decision-processing client and then copied to this repo to push the changes to prd.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byu-oit/vue-decision-processing-components",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.36.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",
|