@dcrackel/hematournamentui 1.0.80 → 1.0.82
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.
|
@@ -29184,7 +29184,7 @@ const Wp = /* @__PURE__ */ Re(MT, [["render", PT]]), NT = {
|
|
|
29184
29184
|
},
|
|
29185
29185
|
recommended: {
|
|
29186
29186
|
type: Number,
|
|
29187
|
-
|
|
29187
|
+
default: 0
|
|
29188
29188
|
}
|
|
29189
29189
|
},
|
|
29190
29190
|
data() {
|
|
@@ -29206,7 +29206,7 @@ const Wp = /* @__PURE__ */ Re(MT, [["render", PT]]), NT = {
|
|
|
29206
29206
|
},
|
|
29207
29207
|
methods: {
|
|
29208
29208
|
increase() {
|
|
29209
|
-
this.counter++, this.$emit("update:count", this.counter);
|
|
29209
|
+
this.counter < 10 && (this.counter++, this.$emit("update:count", this.counter));
|
|
29210
29210
|
},
|
|
29211
29211
|
decrease() {
|
|
29212
29212
|
this.counter > 0 && (this.counter--, this.$emit("update:count", this.counter));
|
|
@@ -29507,11 +29507,13 @@ const KR = /* @__PURE__ */ Re(GT, [["render", aR]]), sR = {
|
|
|
29507
29507
|
},
|
|
29508
29508
|
computed: {
|
|
29509
29509
|
poolSize() {
|
|
29510
|
-
return this.event.PoolSize || 0;
|
|
29510
|
+
return console.log(`poolSize: ${this.event.PoolSize}`), this.event.PoolSize || 0;
|
|
29511
29511
|
},
|
|
29512
29512
|
numberOfRings() {
|
|
29513
|
-
return this.event.NumberOfRings || 0;
|
|
29514
|
-
}
|
|
29513
|
+
return console.log(`numberOfRings: ${this.event.NumberOfRings}`), this.event.NumberOfRings || 0;
|
|
29514
|
+
}
|
|
29515
|
+
},
|
|
29516
|
+
methods: {
|
|
29515
29517
|
handlePoolSizeChange(n) {
|
|
29516
29518
|
this.$emit("update:poolSize", n);
|
|
29517
29519
|
},
|