@dcrackel/hematournamentui 1.0.82 → 1.0.84

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcrackel/hematournamentui",
3
3
  "private": false,
4
- "version": "1.0.82",
4
+ "version": "1.0.84",
5
5
  "type": "module",
6
6
  "main": "dist/HemaTouranmentUI-lib.umd.js",
7
7
  "module": "dist/HemaTouranmentUI-lib.es.js",
@@ -12,6 +12,7 @@
12
12
  <button @click="decrease" class="py-1">
13
13
  <BaseIcon icon-name="fa-caret-down" size="xl" color="primaryHighlight"/>
14
14
  </button>
15
+
15
16
  </div>
16
17
  </section>
17
18
  </div>
@@ -43,6 +44,11 @@ export default {
43
44
  counter: this.count
44
45
  }
45
46
  },
47
+ watch: {
48
+ count(newVal) {
49
+ this.counter = newVal;
50
+ }
51
+ },
46
52
  computed: {
47
53
  isRecommended() {
48
54
  return this.counter === this.recommended;