@dcrackel/hematournamentui 1.0.80 → 1.0.81
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.
|
@@ -29187,14 +29187,9 @@ const Wp = /* @__PURE__ */ Re(MT, [["render", PT]]), NT = {
|
|
|
29187
29187
|
required: !0
|
|
29188
29188
|
}
|
|
29189
29189
|
},
|
|
29190
|
-
data() {
|
|
29191
|
-
return {
|
|
29192
|
-
counter: this.count
|
|
29193
|
-
};
|
|
29194
|
-
},
|
|
29195
29190
|
computed: {
|
|
29196
29191
|
isRecommended() {
|
|
29197
|
-
return this.
|
|
29192
|
+
return this.count === this.recommended;
|
|
29198
29193
|
},
|
|
29199
29194
|
boxClass() {
|
|
29200
29195
|
return {
|
|
@@ -29239,7 +29234,7 @@ function zT(n, e, t, r, i, o) {
|
|
|
29239
29234
|
]),
|
|
29240
29235
|
P("span", FT, [
|
|
29241
29236
|
N(a, {
|
|
29242
|
-
text:
|
|
29237
|
+
text: t.count,
|
|
29243
29238
|
size: "xl",
|
|
29244
29239
|
color: "primary"
|
|
29245
29240
|
}, null, 8, ["text"])
|
|
@@ -29507,11 +29502,13 @@ const KR = /* @__PURE__ */ Re(GT, [["render", aR]]), sR = {
|
|
|
29507
29502
|
},
|
|
29508
29503
|
computed: {
|
|
29509
29504
|
poolSize() {
|
|
29510
|
-
return this.event.PoolSize || 0;
|
|
29505
|
+
return console.log(`poolSize: ${this.event.PoolSize}`), this.event.PoolSize || 0;
|
|
29511
29506
|
},
|
|
29512
29507
|
numberOfRings() {
|
|
29513
|
-
return this.event.NumberOfRings || 0;
|
|
29514
|
-
}
|
|
29508
|
+
return console.log(`numberOfRings: ${this.event.NumberOfRings}`), this.event.NumberOfRings || 0;
|
|
29509
|
+
}
|
|
29510
|
+
},
|
|
29511
|
+
methods: {
|
|
29515
29512
|
handlePoolSizeChange(n) {
|
|
29516
29513
|
this.$emit("update:poolSize", n);
|
|
29517
29514
|
},
|