@byu-oit/vue-decision-processing-components 8.28.1 → 8.28.2

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.28.2](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.28.1...v8.28.2) (2022-07-26)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * add message regarding note length ([f41ecd1](https://github.com/byu-oit/vue-decision-processing-components/commit/f41ecd10ce03fdf8564a851bc7c4ff5ac0ee8589))
11
+
5
12
  ### [8.28.1](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.28.0...v8.28.1) (2022-07-26)
6
13
 
7
14
 
package/NoteDialog.vue CHANGED
@@ -33,6 +33,9 @@
33
33
  <span>Next Action:</span>
34
34
  <input type="date" v-model="nextAction">
35
35
  </template>
36
+ <template v-if="note.length>=400">
37
+ <div class="p-1 text-uppercase">Note length greater than 400 characters. Note will be split into 2 or more smaller notes.</div>
38
+ </template>
36
39
  <button class="btn btn-outline-primary" @click="saveNote" :disabled="note.length<1">Save</button>
37
40
  <button class="btn btn-outline-secondary" @click="close">Cancel</button>
38
41
  </span>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byu-oit/vue-decision-processing-components",
3
- "version": "8.28.1",
3
+ "version": "8.28.2",
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",