@mtgame/core 0.1.33 → 0.1.34
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/bundles/mtgame-core.umd.js +7 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/bundles/mtgame-core.umd.min.js +1 -1
- package/bundles/mtgame-core.umd.min.js.map +1 -1
- package/esm2015/models/volleyball-statistic.js +4 -1
- package/esm5/models/volleyball-statistic.js +8 -1
- package/fesm2015/mtgame-core.js +3 -0
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +7 -0
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/volleyball-statistic.d.ts +1 -0
- package/package.json +1 -1
package/fesm5/mtgame-core.js
CHANGED
|
@@ -4712,6 +4712,13 @@ var VolleyballStatistic = /** @class */ (function (_super) {
|
|
|
4712
4712
|
enumerable: true,
|
|
4713
4713
|
configurable: true
|
|
4714
4714
|
});
|
|
4715
|
+
Object.defineProperty(VolleyballStatistic.prototype, "totalReceives", {
|
|
4716
|
+
get: function () {
|
|
4717
|
+
return this.receives + this.excellentReceives;
|
|
4718
|
+
},
|
|
4719
|
+
enumerable: true,
|
|
4720
|
+
configurable: true
|
|
4721
|
+
});
|
|
4715
4722
|
VolleyballStatistic.toFront = function (data) { };
|
|
4716
4723
|
VolleyballStatistic.toBack = function (data) { };
|
|
4717
4724
|
__decorate([
|